mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
11 lines
116 B
Go
11 lines
116 B
Go
![]() |
package cpu
|
||
|
|
||
|
type cpuTimes struct {
|
||
|
User uint32
|
||
|
Nice uint32
|
||
|
Sys uint32
|
||
|
Spin uint32
|
||
|
Intr uint32
|
||
|
Idle uint32
|
||
|
}
|