W Linuksie korzystanie z niego może nie być bezpieczne, _SC_NPROCESSORS_ONLN
ponieważ nie jest ono częścią standardu POSIX, a instrukcja sysconf podaje tyle samo. Istnieje więc możliwość, że _SC_NPROCESSORS_ONLN
może nie być obecna:
These values also exist, but may not be standard.
[...]
- _SC_NPROCESSORS_CONF
The number of processors configured.
- _SC_NPROCESSORS_ONLN
The number of processors currently online (available).
Prostym podejściem byłoby ich przeczytanie /proc/stat
lub /proc/cpuinfo
policzenie:
#include<unistd.h>
#include<stdio.h>
int main(void)
{
char str[256];
int procCount = -1; // to offset for the first entry
FILE *fp;
if( (fp = fopen("/proc/stat", "r")) )
{
while(fgets(str, sizeof str, fp))
if( !memcmp(str, "cpu", 3) ) procCount++;
}
if ( procCount == -1)
{
printf("Unable to get proc count. Defaulting to 2");
procCount=2;
}
printf("Proc Count:%d\n", procCount);
return 0;
}
Używanie /proc/cpuinfo
:
#include<unistd.h>
#include<stdio.h>
int main(void)
{
char str[256];
int procCount = 0;
FILE *fp;
if( (fp = fopen("/proc/cpuinfo", "r")) )
{
while(fgets(str, sizeof str, fp))
if( !memcmp(str, "processor", 9) ) procCount++;
}
if ( !procCount )
{
printf("Unable to get proc count. Defaulting to 2");
procCount=2;
}
printf("Proc Count:%d\n", procCount);
return 0;
}
To samo podejście w powłoce przy użyciu grep:
grep -c ^processor /proc/cpuinfo
Lub
grep -c ^cpu /proc/stat # subtract 1 from the result