Or maybe

  os.sysconf('SC_NPROCESSORS_ONLN')

Usually, the value returned by os.sysconf('SC_NPROCESSORS_ONLN') and
os.sysconf('SC_NPROCESSORS_CONF') are the same, but if they do differ,
os.sysconf('SC_NPROCESSORS_ONLN') is the reliably figure.


/Jean Brouwers

PS) This applies to Linux and Solaris, at least.



k pur wrote:
> You can use
>
> print os.sysconf("SC_NPROCESSORS_CONF")
>
> works on Linux
>
>
> krishan
>
>
> Pauldoo wrote:
> > Hi,
> > Is a way in python to obtain the total number of processors present in
> > the system?
> > 
> > os.platform doesn't seem to contain anything useful.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to