aboutsummaryrefslogtreecommitdiff
path: root/src/ito.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ito.cpp')
-rw-r--r--src/ito.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ito.cpp b/src/ito.cpp
index c8b3d68..e9fb033 100644
--- a/src/ito.cpp
+++ b/src/ito.cpp
@@ -43,6 +43,10 @@ bool Bu::Ito::join()
43 43
44void Bu::Ito::yield() 44void Bu::Ito::yield()
45{ 45{
46#ifndef WIN32
46 pthread_yield(); 47 pthread_yield();
48#else
49 #warning Bu::Ito::yield IS A STUB for WIN32!!!!
50#endif
47} 51}
48 52