hsysinfo.h 287 B

12345678910111213141516
  1. #ifndef H_SYS_INFO_H_
  2. #define H_SYS_INFO_H_
  3. #include "hplatform.h"
  4. inline int get_ncpu() {
  5. #ifdef __unix__
  6. return sysconf(_SC_NPROCESSORS_CONF);
  7. #elif defined(_WIN32)
  8. SYSTEM_INFO si;
  9. GetSystemInfo(&si);
  10. return si.dwNumberOfProcessors;
  11. #endif
  12. }
  13. #endif // H_SYS_INFO_H_