Fixed sched_yield

pull/115/head
Mikhail Grigorev 3 years ago
parent 9a09e5aa56
commit 7ff13a4df6

@ -45,7 +45,7 @@ static int pthread_join(pthread_t thread, void* unused) {
return (int) WaitForSingleObject(thread, INFINITE);
}
int sched_yield (void) {
static int sched_yield (void) {
Sleep (0);
return 0;
}

Loading…
Cancel
Save