| 836 | } |
| 837 | |
| 838 | CMP_INT CMP_API CMP_NumberOfProcessors(void) |
| 839 | { |
| 840 | #ifndef _WIN32 |
| 841 | return sysconf(_SC_NPROCESSORS_ONLN); |
| 842 | #else |
| 843 | // Figure out how many cores there are on this machine |
| 844 | //SYSTEM_INFO sysinfo; |
| 845 | //GetSystemInfo(&sysinfo); |
| 846 | //return (sysinfo.dwNumberOfProcessors); |
| 847 | return GetMaximumProcessorCount(0); |
| 848 | #endif |
| 849 | } |
no outgoing calls