Sign in
mojo
/
mojo-tools
/
4446eb0e2d7a3e9bca844dc343aa4094eaae9a97
/
.
/
fusl
/
src
/
thread
/
__futex.c
blob: 96307c0888ed486617e18d1da2c4730f9714baf6 [
file
] [
log
] [
blame
]
#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
);
}