1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <sched.h>
27#include "libbb.h"
28
29int nproc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
30int nproc_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
31{
32 unsigned long mask[1024];
33 int count = 0;
34#if ENABLE_LONG_OPTS
35 int ignore = 0;
36 int opts = getopt32long(argv, "\xfe:+",
37 "ignore\0" Required_argument "\xfe"
38 "all\0" No_argument "\xff"
39 , &ignore
40 );
41
42 if (opts & (1 << 1)) {
43 DIR *cpusd = opendir("/sys/devices/system/cpu");
44 if (cpusd) {
45 struct dirent *de;
46 while (NULL != (de = readdir(cpusd))) {
47 char *cpuid = strstr(de->d_name, "cpu");
48 if (cpuid && isdigit(cpuid[strlen(cpuid) - 1]))
49 count++;
50 }
51 IF_FEATURE_CLEAN_UP(closedir(cpusd);)
52 }
53 } else
54#endif
55 if (sched_getaffinity(0, sizeof(mask), (void*)mask) == 0) {
56 int i;
57 for (i = 0; i < ARRAY_SIZE(mask); i++) {
58 unsigned long m = mask[i];
59 while (m) {
60 if (m & 1)
61 count++;
62 m >>= 1;
63 }
64 }
65 }
66
67 IF_LONG_OPTS(count -= ignore;)
68 if (count <= 0)
69 count = 1;
70
71 printf("%u\n", count);
72
73 return 0;
74}
75