musl/src/thread/__futex.c

8 lines
151 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 syscall(SYS_futex, addr, op, val, ts);
2011-02-12 00:22:29 -05:00
}