1
0
mirror of https://github.com/janet-lang/janet synced 2025-09-07 13:28:03 +00:00

Merge pull request #1052 from dressupgeekout/cpu_count_reduced_os

(os/cpu-count) should not be defined at all with JANET_REDUCED_OS
This commit is contained in:
Calvin Rose
2022-12-16 11:11:30 -06:00
committed by GitHub

View File

@@ -209,6 +209,8 @@ JANET_CORE_FN(os_exit,
return janet_wrap_nil();
}
#ifndef JANET_REDUCED_OS
JANET_CORE_FN(os_cpu_count,
"(os/cpu-count &opt dflt)",
"Get an approximate number of CPUs available on for this process to use. If "
@@ -250,7 +252,6 @@ JANET_CORE_FN(os_cpu_count,
#endif
}
#ifndef JANET_REDUCED_OS
#ifndef JANET_NO_PROCESSES