mirror of
https://github.com/fluencelabs/musl
synced 2025-05-28 15:11:34 +00:00
these should be tweaked according to testing. offhand i know 1000 is too low and 5000 is likely to be sufficiently high. consider trying to add futexes to file locking, too...
16 lines
360 B
C
16 lines
360 B
C
#include "pthread_impl.h"
|
|
|
|
void __wait(volatile int *addr, volatile int *waiters, int val, int priv)
|
|
{
|
|
int spins=10000;
|
|
if (priv) priv = 128; priv=0;
|
|
while (spins--) {
|
|
if (*addr==val) a_spin();
|
|
else return;
|
|
}
|
|
if (waiters) a_inc(waiters);
|
|
while (*addr==val)
|
|
__syscall(SYS_futex, (long)addr, FUTEX_WAIT|priv, val, 0);
|
|
if (waiters) a_dec(waiters);
|
|
}
|