summaryrefslogtreecommitdiff
path: root/m4/ctng_cpu_count.m4
blob: 4ea50d8107e62970dbd69e0bc62c82248fcab255 (plain)
1
2
3
4
5
6
7
8
9
10
# Find out how to count CPUs
AC_DEFUN([CTNG_CPU_COUNT],
    [AC_CACHE_CHECK([whether to use getconf or sysctl to count CPUs],
        [acx_cv_cpu_count],
        [getconf _NPROCESSORS_ONLN >/dev/null 2>&1 && \
             acx_cv_cpu_count="getconf _NPROCESSORS_ONLN"
         sysctl -n hw.ncpu >/dev/null 2>&1 && \
             acx_cv_cpu_count="sysctl -n hw.ncpu"])
     AC_SUBST(CPU_COUNT, "$acx_cv_cpu_count")
    ])