getNumPhysicalCpus()

It should return MPProcessors(), not 1.

ah yes, I’d forgotten to get round to implementing that method. Cheers.

[quote]int SystemStats::getNumPhysicalCpus()
{
#if JUCE_INTEL
return 1;
#else
return 1;
#endif
}[/quote]

I like how you did both a PPC and an Intel version. :lol:

ah yes, one of the 1s is big-endian, the other is little-endian, you see… :wink: