cpusetGetCPUCount(3x) cpusetGetCPUCount(3x)
cpusetGetCPUCount - obtain the number of CPUs configured on the system
#include <cpuset.h>
int cpusetGetCPUCount(void);
The cpusetGetCPUCount function returns the number of CPUs that are
configured on the system.
This example obtains the number of CPUs configured on the system and then
prints out the result.
int ncpus;
if ( !(ncpus = cpusetGetCPUCount()) ) {
perror("cpusetGetCPUCount");
exit(1);
}
printf("The systems is configured for %d CPUs\n",
ncpus);
cpusetGetCPUCount is found in the library "libcpuset.so", and will be
loaded if the option -lcpuset is used with cc(1) or ld(1).
cpuset(1), cpuset(5).
If successful, cpusetGetCPUCount returns a value greater than or equal to
1. If cpusetAttach fails, it returns the value 0 and errno is set to
indicate the error. The values for errno include those values as set by
sysmp(2) and the following:
ERANGE [Toc] [Back]
Number of CPUs configured on the system is not a value greater than
or equal to 1.
PPPPaaaaggggeeee 1111 [ Back ]
|