summaryrefslogtreecommitdiff
path: root/src/threading
diff options
context:
space:
mode:
Diffstat (limited to 'src/threading')
-rw-r--r--src/threading/thread.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/threading/thread.cpp b/src/threading/thread.cpp
index 8f54fb762..09cc7d836 100644
--- a/src/threading/thread.cpp
+++ b/src/threading/thread.cpp
@@ -261,10 +261,14 @@ bool Thread::bindToProcessor(unsigned int proc_number)
return false;
-#elif USE_WIN_THREADS
+#elif _MSC_VER
return SetThreadAffinityMask(getThreadHandle(), 1 << proc_number);
+#elif __MINGW32__
+
+ return SetThreadAffinityMask(pthread_gethandle(getThreadHandle()), 1 << proc_number);
+
#elif __FreeBSD_version >= 702106 || defined(__linux__)
cpu_set_t cpuset;
@@ -309,10 +313,14 @@ bool Thread::bindToProcessor(unsigned int proc_number)
bool Thread::setPriority(int prio)
{
-#if USE_WIN_THREADS
+#ifdef _MSC_VER
return SetThreadPriority(getThreadHandle(), prio);
+#elif __MINGW32__
+
+ return SetThreadPriority(pthread_gethandle(getThreadHandle()), prio);
+
#else
struct sched_param sparam;