You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixz/cpu.c

6 lines
92 B
C

#include <unistd.h>
size_t num_threads(void) {
return sysconf(_SC_NPROCESSORS_ONLN);
}