1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-05-04 22:17:34 +08:00

Merge pull request #17 from slank/CPUPpercent-typo

Fix typo
This commit is contained in:
shirou 2014-09-25 13:48:19 +09:00
commit ec46fb3a94

View File

@ -143,7 +143,7 @@ func (p *Process) CPUTimes() (*CPUTimesStat, error) {
}
return cpuTimes, nil
}
func (p *Process) CPUPpercent() (int32, error) {
func (p *Process) CPUPercent() (int32, error) {
return 0, NotImplementedError
}
func (p *Process) CPUAffinity() ([]int32, error) {