1 package cpu 2 3 type cpuTimes struct { 4 User uint64 5 Nice uint64 6 Sys uint64 7 Intr uint64 8 Idle uint64 9 } 10
View as plain text