aboutsummaryrefslogtreecommitdiff
path: root/src/stable/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/thread.cpp')
-rw-r--r--src/stable/thread.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/stable/thread.cpp b/src/stable/thread.cpp
index 7d362e9..5fe034a 100644
--- a/src/stable/thread.cpp
+++ b/src/stable/thread.cpp
@@ -6,6 +6,7 @@
6 */ 6 */
7 7
8#include "bu/thread.h" 8#include "bu/thread.h"
9#include <sched.h>
9 10
10namespace Bu { subExceptionDef( ThreadException ); } 11namespace Bu { subExceptionDef( ThreadException ); }
11 12
@@ -73,10 +74,6 @@ bool Bu::Thread::join()
73 74
74void Bu::Thread::yield() 75void Bu::Thread::yield()
75{ 76{
76#ifndef WIN32
77 pthread_yield();
78#else
79 sched_yield(); 77 sched_yield();
80#endif
81} 78}
82 79