summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2011-12-10 16:54:41 +0000
committermichi_cc <michi_cc@openttd.org>2011-12-10 16:54:41 +0000
commita0f3649c1abe7b831f083366e2fd91206bf23091 (patch)
tree5a352c430013c682e93d1a1b85960182cd18fbac /src/os
parent0ca25fb3af8fbf00607df120149b27aa7a763edb (diff)
downloadopenttd-a0f3649c1abe7b831f083366e2fd91206bf23091.tar.xz
(svn r23481) -Add: Function to get the CPU core count.
Diffstat (limited to 'src/os')
-rw-r--r--src/os/macosx/macos.mm17
-rw-r--r--src/os/os2/os2.cpp5
-rw-r--r--src/os/unix/unix.cpp31
-rw-r--r--src/os/windows/win32.cpp8
4 files changed, 61 insertions, 0 deletions
diff --git a/src/os/macosx/macos.mm b/src/os/macosx/macos.mm
index f6b2d4e89..7c5092403 100644
--- a/src/os/macosx/macos.mm
+++ b/src/os/macosx/macos.mm
@@ -172,3 +172,20 @@ bool GetClipboardContents(char *buffer, size_t buff_len)
return true;
}
#endif
+
+uint GetCPUCoreCount()
+{
+ uint count = 1;
+#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
+ if (MacOSVersionIsAtLeast(10, 5, 0)) {
+ count = [ [ NSProcessInfo processInfo ] activeProcessorCount ];
+ } else
+#endif
+ {
+#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5)
+ count = MPProcessorsScheduled();
+#endif
+ }
+
+ return count;
+}
diff --git a/src/os/os2/os2.cpp b/src/os/os2/os2.cpp
index bef44d4f5..21fd0c78b 100644
--- a/src/os/os2/os2.cpp
+++ b/src/os/os2/os2.cpp
@@ -210,3 +210,8 @@ void CSleep(int milliseconds)
const char *FS2OTTD(const char *name) {return name;}
const char *OTTD2FS(const char *name) {return name;}
+
+uint GetCPUCoreCount()
+{
+ return 1;
+}
diff --git a/src/os/unix/unix.cpp b/src/os/unix/unix.cpp
index 371beb226..700a9050c 100644
--- a/src/os/unix/unix.cpp
+++ b/src/os/unix/unix.cpp
@@ -28,10 +28,18 @@
#define HAS_STATVFS
#endif
+#if defined(OPENBSD) || defined(__NetBSD__) || defined(__FreeBSD__)
+ #define HAS_SYSCTL
+#endif
+
#ifdef HAS_STATVFS
#include <sys/statvfs.h>
#endif
+#ifdef HAS_SYSCTL
+#include <sys/sysctl.h>
+#endif
+
#ifdef __MORPHOS__
#include <exec/types.h>
@@ -318,3 +326,26 @@ void CSleep(int milliseconds)
usleep(milliseconds * 1000);
#endif
}
+
+
+#ifndef __APPLE__
+uint GetCPUCoreCount()
+{
+ uint count = 1;
+#ifdef HAS_SYSCTL
+ int ncpu = 0;
+ size_t len = sizeof(ncpu);
+
+ if (sysctlbyname("hw.availcpu", &ncpu, &len, NULL, 0) < 0) {
+ sysctlbyname("hw.ncpu", &ncpu, &len, NULL, 0);
+ }
+
+ if (ncpu > 0) count = ncpu;
+#elif defined(_SC_NPROCESSORS_ONLN)
+ long res = sysconf(_SC_NPROCESSORS_ONLN);
+ if (res > 0) count = res;
+#endif
+
+ return count;
+}
+#endif
diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp
index 39203cbca..6c7a3ec68 100644
--- a/src/os/windows/win32.cpp
+++ b/src/os/windows/win32.cpp
@@ -753,3 +753,11 @@ const char *GetCurrentLocale(const char *)
static char retbuf[6] = {lang[0], lang[1], '_', country[0], country[1], 0};
return retbuf;
}
+
+uint GetCPUCoreCount()
+{
+ SYSTEM_INFO info;
+
+ GetSystemInfo(&info);
+ return info.dwNumberOfProcessors;
+}