Files
linux-kernel-module-cheat/lkmc/futex.h
Ciro Santilli 六四事件 法轮功 10946a7d80 one useless futex example, hopefully correct
2019-12-13 00:00:00 +00:00

14 lines
288 B
C

#ifndef LKMC_FUTEX_H
#define LKMC_FUTEX_H
static int
lkmc_futex(int *uaddr, int futex_op, int val,
const struct timespec *timeout, int *uaddr2, int val3)
{
(void)uaddr2;
return syscall(SYS_futex, uaddr, futex_op, val,
timeout, uaddr, val3);
}
#endif