Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 85c1937b2693a0d4e39bb2644d720ed3703b9830 17 lines 342 B view raw
1#ifndef _LINUX_FUTEX_H 2#define _LINUX_FUTEX_H 3 4/* Second argument to futex syscall */ 5 6 7#define FUTEX_WAIT (0) 8#define FUTEX_WAKE (1) 9#define FUTEX_FD (2) 10#define FUTEX_REQUEUE (3) 11#define FUTEX_CMP_REQUEUE (4) 12 13long do_futex(unsigned long uaddr, int op, int val, 14 unsigned long timeout, unsigned long uaddr2, int val2, 15 int val3); 16 17#endif