I am writing a small C application that use some threads for processing data. I want to be able to know the number of processors on a certain machine, without using system() & in combination to a small script.
The only way i can think of is to parse /proc/cpuinfo. Any other useful suggestions ?
sysconf( _SC_NPROCESSORS_ONLN )is by first trying /proc/stat . If it's there, it counts lines matching/^cpu[0-9]/. Otherwise, it looks at/proc/cpuinfo, whose format varies among architectures. – Joey Adams Apr 22 '10 at 20:06