Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
thread
/
__futex.c
blob: c836586585dec79d9ea6d0c44551a491b6cc55b0 [
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
);
}