Determining the number of available cores on a machine?

2k Views Asked by At

I want my software to create one thread per core, obviously different Macs have a different number of cores.

Does anyone know how to (programmatically, via Cocoa) determine the number of cores?

2

There are 2 best solutions below

1
On
[[NSProcessInfo processInfo] processorCount]
1
On

See How do I detect a dual core CPU on iOS? It works in OS X too.

unsigned int countCores()
{
    size_t len;
    unsigned int ncpu;
    len = sizeof(ncpu);
    sysctlbyname ("hw.ncpu",&ncpu,&len,NULL,0);
    return ncpu;
}