10 lines
228 B
C
10 lines
228 B
C
#define SYSCALL_RETURN_ERRNO
|
|
#include "pthread_impl.h"
|
|
|
|
void __wake(volatile int *addr, int cnt, int priv)
|
|
{
|
|
if (priv) priv = 128; priv=0;
|
|
if (cnt<0) cnt = INT_MAX;
|
|
syscall3(__NR_futex, (long)addr, FUTEX_WAKE | priv, cnt);
|
|
}
|