Files
musl/src/thread/__wait.c
Szabolcs Nagy 339cc250f6 use the internal macro name FUTEX_PRIVATE in __wait
the name was recently added for the setxid/synccall rework,
so use the name now that we have it.
2015-02-09 22:11:52 +01:00

18 lines
449 B
C

#include "pthread_impl.h"
void __wait(volatile int *addr, volatile int *waiters, int val, int priv)
{
int spins=100;
if (priv) priv = FUTEX_PRIVATE;
while (spins-- && (!waiters || !*waiters)) {
if (*addr==val) a_spin();
else return;
}
if (waiters) a_inc(waiters);
while (*addr==val) {
__syscall(SYS_futex, addr, FUTEX_WAIT|priv, val, 0) != -ENOSYS
|| __syscall(SYS_futex, addr, FUTEX_WAIT, val, 0);
}
if (waiters) a_dec(waiters);
}