mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 12:01:35 +00:00
9 lines
166 B
C
9 lines
166 B
C
|
#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);
|
||
|
}
|
||
|
|