musl/src/thread/__futex.c

9 lines
166 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "futex.h"
#include "syscall.h"
int __futex(volatile int *addr, int op, int val, void *ts)
{
return syscall4(__NR_futex, (long)addr, op, val, (long)ts);
}