about summary refs log tree commit diff
path: root/src/rt/rust_env.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-06-05 22:34:35 -0700
committerBrian Anderson <banderson@mozilla.com>2013-06-06 17:53:13 -0700
commitf9a5005f52d528797d6b98a3bee73ab2d71b9aa3 (patch)
treeb68bb1dab39c064efdc3e275d03de3c8365c1613 /src/rt/rust_env.cpp
parent80849e78a847f7834f71b36a66251ba0ea37a982 (diff)
downloadrust-f9a5005f52d528797d6b98a3bee73ab2d71b9aa3.tar.gz
rust-f9a5005f52d528797d6b98a3bee73ab2d71b9aa3.zip
rt: Add rust_get_num_cpus
Diffstat (limited to 'src/rt/rust_env.cpp')
-rw-r--r--src/rt/rust_env.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rt/rust_env.cpp b/src/rt/rust_env.cpp
index ed38be3550f..c3d38851e7b 100644
--- a/src/rt/rust_env.cpp
+++ b/src/rt/rust_env.cpp
@@ -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);
 }