CPU: Fix linter warning on OSX.
This commit is contained in:
parent
2eb8f8bff8
commit
74541ba4a5
|
@ -84,9 +84,11 @@ func perCPUTimes() ([]TimesStat, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func allCPUTimes() ([]TimesStat, error) {
|
func allCPUTimes() ([]TimesStat, error) {
|
||||||
var count C.mach_msg_type_number_t = C.HOST_CPU_LOAD_INFO_COUNT
|
var count C.mach_msg_type_number_t
|
||||||
var cpuload C.host_cpu_load_info_data_t
|
var cpuload C.host_cpu_load_info_data_t
|
||||||
|
|
||||||
|
count = C.HOST_CPU_LOAD_INFO_COUNT
|
||||||
|
|
||||||
status := C.host_statistics(C.host_t(C.mach_host_self()),
|
status := C.host_statistics(C.host_t(C.mach_host_self()),
|
||||||
C.HOST_CPU_LOAD_INFO,
|
C.HOST_CPU_LOAD_INFO,
|
||||||
C.host_info_t(unsafe.Pointer(&cpuload)),
|
C.host_info_t(unsafe.Pointer(&cpuload)),
|
||||||
|
|
Loading…
Reference in New Issue