Merge pull request #240 from lfittl/fix-osx-linter-warning

CPU: Fix linter warning on OSX
pull/248/head
shirou 9 years ago committed by GitHub
commit 58133410ec

@ -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)),

Loading…
Cancel
Save