aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2022-09-29 18:18:36 -0700
committerMike Buland <mike@xagasoft.com>2022-09-29 18:18:36 -0700
commitfbcbfceb7fe95b974a4bbe46a1726034edde3946 (patch)
tree71de02874f123aca189234da299bbbc4ba755b37
parent2cc382a91d4d252244ce6a5035932aab085b9b3f (diff)
downloadlibbu++-fbcbfceb7fe95b974a4bbe46a1726034edde3946.tar.gz
libbu++-fbcbfceb7fe95b974a4bbe46a1726034edde3946.tar.bz2
libbu++-fbcbfceb7fe95b974a4bbe46a1726034edde3946.tar.xz
libbu++-fbcbfceb7fe95b974a4bbe46a1726034edde3946.zip
Replaced deprecated thread_yield with sched_yield.
-rw-r--r--default.bld5
-rw-r--r--src/stable/thread.cpp5
2 files changed, 6 insertions, 4 deletions
diff --git a/default.bld b/default.bld
index 826164c..b30e374 100644
--- a/default.bld
+++ b/default.bld
@@ -23,6 +23,11 @@ action "default"
23 targets("tools")]; 23 targets("tools")];
24} 24}
25 25
26action "lib"
27{
28 build: ["header-links", "libbu++.a"];
29}
30
26action "pkg" 31action "pkg"
27{ 32{
28 build: targets("pkg"); 33 build: targets("pkg");
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