rt: Add rust_get_num_cpus

This commit is contained in:
Brian Anderson
2013-06-05 22:34:35 -07:00
parent 80849e78a8
commit f9a5005f52
3 changed files with 11 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ rust_drop_env_lock() {
}
#if defined(__WIN32__)
static int
int
get_num_cpus() {
SYSTEM_INFO sysinfo;
GetSystemInfo(&sysinfo);
@@ -48,7 +48,7 @@ get_num_cpus() {
return (int) sysinfo.dwNumberOfProcessors;
}
#elif defined(__BSD__)
static int
int
get_num_cpus() {
/* swiped from http://stackoverflow.com/questions/150355/
programmatically-find-the-number-of-cores-on-a-machine */
@@ -75,7 +75,7 @@ get_num_cpus() {
return numCPU;
}
#elif defined(__GNUC__)
static int
int
get_num_cpus() {
return sysconf(_SC_NPROCESSORS_ONLN);
}