Linux에서는 _SC_NPROCESSORS_ONLN
POSIX 표준 및 sysconf 매뉴얼 상태에 포함 되지 않으므로 사용하기에 안전하지 않을 수 있습니다 . 따라서 존재 _SC_NPROCESSORS_ONLN
하지 않을 가능성이 있습니다.
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).
간단한 접근법은 그것들 을 읽 /proc/stat
거나 /proc/cpuinfo
세는 것입니다.
#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;
}
사용 /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;
}
grep을 사용하는 쉘에서 동일한 접근법 :
grep -c ^processor /proc/cpuinfo
또는
grep -c ^cpu /proc/stat # subtract 1 from the result