mirror of
https://github.com/status-im/consul.git
synced 2025-01-15 16:26:06 +00:00
95c027a3ea
https://github.com/shirou/gopsutil/pull/895 is merged and fixes our problem. Time to update. Since there is no new version just yet, updating to the sha.
10 lines
103 B
Go
10 lines
103 B
Go
package cpu
|
|
|
|
type cpuTimes struct {
|
|
User uint64
|
|
Nice uint64
|
|
Sys uint64
|
|
Intr uint64
|
|
Idle uint64
|
|
}
|