replaced pthread_yield with ssched_yield, fixed semaphore post:q

This commit is contained in:
KTRosenberg
2020-01-02 16:25:48 -05:00
parent 93ead4bcb3
commit d017b5de9d
5 changed files with 14 additions and 6 deletions
+1 -1
View File
@@ -158,5 +158,5 @@ destroy :: proc(t: ^Thread) {
yield :: proc() {
unix.pthread_yield();
unix.sched_yield();
}