aboutsummaryrefslogtreecommitdiff
path: root/plugins/common.h
diff options
context:
space:
mode:
authorGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2013-08-19 22:47:36 +0200
committerGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2013-08-19 22:47:36 +0200
commit5f79e3e9f62ca5487d9881973149136ba1d19d3e (patch)
treef79271783e73d4ed452f510cac3efc6d240750a6 /plugins/common.h
parenta0640011730d830c562c87ca0bc6237c404146ea (diff)
downloadmonitoring-plugins-5f79e3e9f62ca5487d9881973149136ba1d19d3e.tar.gz
Clean up check for _SC_NPROCESSORS_ONLN
Closes #62.
Diffstat (limited to 'plugins/common.h')
-rw-r--r--plugins/common.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/plugins/common.h b/plugins/common.h
index 858329fd..8f05c158 100644
--- a/plugins/common.h
+++ b/plugins/common.h
@@ -82,14 +82,12 @@
getting that data
Will return -1 if cannot get data
*/
-#ifdef HAVE_SYSCONF__SC_NPROCESSORS_ONLN
-#define GET_NUMBER_OF_CPUS() sysconf(_SC_NPROCESSORS_ONLN)
+#if defined(HAVE_SYSCONF__SC_NPROCESSORS_ONLN)
+# define GET_NUMBER_OF_CPUS() sysconf(_SC_NPROCESSORS_ONLN)
+#elif defined (HAVE_SYSCONF__SC_NPROCESSORS_CONF)
+# define GET_NUMBER_OF_CPUS() sysconf(_SC_NPROCESSORS_CONF)
#else
-# ifdef HAVE_SYSCONF__SC_NPROCESSORS_CONF
-# define GET_NUMBER_OF_CPUS() sysconf(_SC_NPROCESSORS_CONF)
-# else
-# define GET_NUMBER_OF_CPUS() -1
-# endif
+# define GET_NUMBER_OF_CPUS() -1
#endif
#ifdef TIME_WITH_SYS_TIME