* Update to v3.21.1 to allow builds to work for darwin arm64 Co-authored-by: Megan Marsh <megan@hashicorp.com> Co-authored-by: Adrien Delorme <adrien.delorme@icloud.com>
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
|
|
}
|