Ticket #45832: fix-jsgc.cpp.diff
File fix-jsgc.cpp.diff, 354 bytes (added by ballapete (Peter "Pete" Dyballa), 10 years ago) |
---|
-
jsgc.
old new 2865 2865 GetSystemInfo(&sysinfo); 2866 2866 ncpus = unsigned(sysinfo.dwNumberOfProcessors); 2867 2867 # else 2868 long n = sysconf(_SC_NPROCESSORS_ONLN);2868 long n = 1; 2869 2869 ncpus = (n > 0) ? unsigned(n) : 1; 2870 2870 # endif 2871 2871 }