From 27414daadf5727e8ab942374b5ec1c8990122878 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 29 Aug 2009 13:39:21 +0300 Subject: Fix sysctl() usage. This fixes build on *BSDs and Darwin. Thanks to Jukka Salmi for the patches. Richard Koch reported the problem too. --- src/common/cpucores.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/cpucores.h') diff --git a/src/common/cpucores.h b/src/common/cpucores.h index 704d8a26..330cd9c9 100644 --- a/src/common/cpucores.h +++ b/src/common/cpucores.h @@ -40,7 +40,7 @@ cpucores(void) int name[2] = { CTL_HW, HW_NCPU }; int cpus; size_t cpus_size = sizeof(cpus); - if (!sysctl(name, &cpus, &cpus_size, NULL, NULL) + if (!sysctl(name, 2, &cpus, &cpus_size, NULL, 0) && cpus_size == sizeof(cpus) && cpus > 0) ret = (uint32_t)(cpus); #endif -- cgit v1.2.3