OLD | NEW |
---|---|
1 #include "futex.h" | 1 #include "futex.h" |
2 #include "syscall.h" | 2 #include "syscall.h" |
3 | 3 |
4 int __futex(volatile int *addr, int op, int val, void *ts) | 4 int __futex(volatile int* addr, int op, int val, void* ts) { |
5 { | 5 return syscall(SYS_futex, addr, op, val, ts); |
6 » return syscall(SYS_futex, addr, op, val, ts); | |
7 } | 6 } |
OLD | NEW |