We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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:
````c SYSTEM_INFO info; GetSystemInfo(&info);
And for Linux and Mac OS X:
``c return sysconf(_SC_NPROCESSORS_ONLN); ``
Something else is likely needed for FreeBSD.