odyssey/sources/sysv.h

13 lines
200 B
C
Raw Normal View History

2021-05-20 12:26:19 +00:00
#ifndef ODYSSEY_SYSV_H
#define ODYSSEY_SYSV_H
static inline size_t od_get_ncpu()
{
#ifdef _SC_NPROCESSORS_ONLN
return sysconf(_SC_NPROCESSORS_ONLN);
#endif
return 1;
}
#endif /* ODYSSEY_SYSV_H */