mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 12:41:32 +00:00
17 lines
389 B
C
17 lines
389 B
C
|
#define SYSCALL_RETURN_ERRNO
|
||
|
#include "pthread_impl.h"
|
||
|
|
||
|
void __wait(volatile int *addr, volatile int *waiters, int val, int priv)
|
||
|
{
|
||
|
int spins=50000;
|
||
|
if (priv) priv = 128; priv=0;
|
||
|
while (spins--) {
|
||
|
if (*addr==val) a_spin();
|
||
|
else return;
|
||
|
}
|
||
|
if (waiters) a_inc(waiters);
|
||
|
while (*addr==val)
|
||
|
syscall4(__NR_futex, (long)addr, FUTEX_WAIT|priv, val, 0);
|
||
|
if (waiters) a_dec(waiters);
|
||
|
}
|