Unter Linux ist die Verwendung möglicherweise nicht sicher, _SC_NPROCESSORS_ONLN
da es nicht Teil des POSIX-Standards ist und das sysconf- Handbuch dies auch angibt. Es gibt also eine Möglichkeit, die _SC_NPROCESSORS_ONLN
möglicherweise nicht vorhanden ist:
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).
Ein einfacher Ansatz wäre, sie zu lesen /proc/stat
oder zu /proc/cpuinfo
zählen:
#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;
}
Verwenden von /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;
}
Der gleiche Ansatz in der Shell mit grep:
grep -c ^processor /proc/cpuinfo
Oder
grep -c ^cpu /proc/stat # subtract 1 from the result