We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461ff37 commit 0e2e553Copy full SHA for 0e2e553
crnlib/crn_threading_pthreads.cpp
@@ -33,8 +33,6 @@ void crn_threading_init() {
33
g_number_of_processors = math::maximum<int>(1, sysconf(_SC_NPROCESSORS_ONLN));
34
#elif defined(__GNUC__)
35
g_number_of_processors = math::maximum<int>(1, get_nprocs());
36
-#else
37
- g_number_of_processors = 1;
38
#endif
39
g_number_of_processors = math::minimum<int>(g_number_of_processors, task_pool::cMaxThreads);
40
}
0 commit comments