On Sep 12, 2012, at 2:17 PM, James Eder wrote:
valSize = sizeof(longVal);
if (!sysctlbyname("hw.cpufrequency", &longVal, &valSize, NULL, 0))
cpuHz = longVal;
I haven't tried building, but this would still leave the warning about longVal being declared but never used, right? I don't see you removing that declaration.
Regards, Ken