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.
See Locators.
We could use a method for determining the number of CPUs / cores available on a system. This would be a bit of C wrapped in Dylan.
For Windows, this is pretty much:
SYSTEM_INFO info; GetSystemInfo(&info); return info.dwNumberOfProcessors;
And for Linux and Mac OS X:
return sysconf(_SC_NPROCESSORS_ONLN);
Something else is likely needed for FreeBSD.