/* https://cirosantilli.com/linux-kernel-module-cheat#sysconf */ #define _XOPEN_SOURCE 700 #include #include #include int main(void) { /* Number of processors, not considering affinity: * http://stackoverflow.com/questions/2693948/how-do-i-retrieve-the-number-of-processors-on-c-linux */ printf("_SC_NPROCESSORS_ONLN = %ld\n", sysconf(_SC_NPROCESSORS_ONLN)); return EXIT_SUCCESS; }