Files
llgo/runtime/internal/lib/runtime/_wrap/runtime.c
2025-04-11 16:28:44 +08:00

11 lines
147 B
C

#include <unistd.h>
int llgo_maxprocs()
{
#ifdef _SC_NPROCESSORS_ONLN
return (int)sysconf(_SC_NPROCESSORS_ONLN);
#else
return 1;
#endif
}