CPU: Fix linter warning on OSX.

This commit is contained in:
Lukas Fittl 2016-08-22 14:20:29 -07:00
parent 2eb8f8bff8
commit 74541ba4a5
1 changed files with 3 additions and 1 deletions

View File

@ -84,9 +84,11 @@ func perCPUTimes() ([]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
count = C.HOST_CPU_LOAD_INFO_COUNT
status := C.host_statistics(C.host_t(C.mach_host_self()),
C.HOST_CPU_LOAD_INFO,
C.host_info_t(unsafe.Pointer(&cpuload)),