1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00

process: delete CPUPercent on the every architecture dependent part.

This commit is contained in:
Shirou WAKAYAMA 2015-03-04 00:04:29 +09:00
parent 2093d43c2a
commit c61c09295c
3 changed files with 0 additions and 9 deletions

View File

@ -159,9 +159,6 @@ func (p *Process) Threads() (map[string]string, error) {
func (p *Process) CPUTimes() (*cpu.CPUTimesStat, error) {
return nil, common.NotImplementedError
}
func (p *Process) CPUPercent() (int32, error) {
return 0, common.NotImplementedError
}
func (p *Process) CPUAffinity() ([]int32, error) {
return nil, common.NotImplementedError
}

View File

@ -144,9 +144,6 @@ func (p *Process) Threads() (map[string]string, error) {
func (p *Process) CPUTimes() (*cpu.CPUTimesStat, error) {
return nil, common.NotImplementedError
}
func (p *Process) CPUPercent() (int32, error) {
return 0, common.NotImplementedError
}
func (p *Process) CPUAffinity() ([]int32, error) {
return nil, common.NotImplementedError
}

View File

@ -135,9 +135,6 @@ func (p *Process) Threads() (map[string]string, error) {
func (p *Process) CPUTimes() (*cpu.CPUTimesStat, error) {
return nil, common.NotImplementedError
}
func (p *Process) CPUPercent() (int32, error) {
return 0, common.NotImplementedError
}
func (p *Process) CPUAffinity() ([]int32, error) {
return nil, common.NotImplementedError
}