k9core/src/nproc.c

11 lines
131 B
C
Raw Normal View History

2020-08-08 19:45:46 +00:00
#include <stdio.h>
#include <sys/sysinfo.h>
2020-08-08 19:45:46 +00:00
int
main(void)
{
int cores = get_nprocs_conf();
printf("%i\n", cores);
return 0;
2020-08-08 19:45:46 +00:00
}