summaryrefslogtreecommitdiff
path: root/src/thread/__futex.c
blob: 96307c0888ed486617e18d1da2c4730f9714baf6 (plain) (blame)
1
2
3
4
5
6
7
#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);
}