about summary refs log tree commit diff
path: root/src/rt/sync/sync.cpp
blob: 09a6f291c70832e5336ef0582470ea816f537419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "../globals.h"
#include "sync.h"

void sync::yield() {
#ifdef __APPLE__
    pthread_yield_np();
#elif __WIN32__
    Sleep(1);
#else
    pthread_yield();
#endif
}