Home | History | Annotate | Download | only in stdlib

Lines Matching refs:sl

1457 static int win32_acquire_lock (MLOCK_T *sl) {
1460 if (!InterlockedCompareExchange(sl, 1, 0))
1463 if (!InterlockedCompareExchange((void**)sl, (void*)1, (void*)0))
1470 static void win32_release_lock (MLOCK_T *sl) {
1471 InterlockedExchange (sl, 0);