futex.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Glibc independent futex library for testing kernel functionality.
  3. * Shamelessly stolen from Darren Hart <dvhltc@us.ibm.com>
  4. * http://git.kernel.org/cgit/linux/kernel/git/dvhart/futextest.git/
  5. */
  6. #ifndef _FUTEX_H
  7. #define _FUTEX_H
  8. #include <unistd.h>
  9. #include <sys/syscall.h>
  10. #include <sys/types.h>
  11. #include <linux/futex.h>
  12. /**
  13. * futex() - SYS_futex syscall wrapper
  14. * @uaddr: address of first futex
  15. * @op: futex op code
  16. * @val: typically expected value of uaddr, but varies by op
  17. * @timeout: typically an absolute struct timespec (except where noted
  18. * otherwise). Overloaded by some ops
  19. * @uaddr2: address of second futex for some ops\
  20. * @val3: varies by op
  21. * @opflags: flags to be bitwise OR'd with op, such as FUTEX_PRIVATE_FLAG
  22. *
  23. * futex() is used by all the following futex op wrappers. It can also be
  24. * used for misuse and abuse testing. Generally, the specific op wrappers
  25. * should be used instead. It is a macro instead of an static inline function as
  26. * some of the types over overloaded (timeout is used for nr_requeue for
  27. * example).
  28. *
  29. * These argument descriptions are the defaults for all
  30. * like-named arguments in the following wrappers except where noted below.
  31. */
  32. #define futex(uaddr, op, val, timeout, uaddr2, val3, opflags) \
  33. syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3)
  34. /**
  35. * futex_wait() - block on uaddr with optional timeout
  36. * @timeout: relative timeout
  37. */
  38. static inline int
  39. futex_wait(u_int32_t *uaddr, u_int32_t val, struct timespec *timeout, int opflags)
  40. {
  41. return futex(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags);
  42. }
  43. /**
  44. * futex_wake() - wake one or more tasks blocked on uaddr
  45. * @nr_wake: wake up to this many tasks
  46. */
  47. static inline int
  48. futex_wake(u_int32_t *uaddr, int nr_wake, int opflags)
  49. {
  50. return futex(uaddr, FUTEX_WAKE, nr_wake, NULL, NULL, 0, opflags);
  51. }
  52. /**
  53. * futex_cmp_requeue() - requeue tasks from uaddr to uaddr2
  54. * @nr_wake: wake up to this many tasks
  55. * @nr_requeue: requeue up to this many tasks
  56. */
  57. static inline int
  58. futex_cmp_requeue(u_int32_t *uaddr, u_int32_t val, u_int32_t *uaddr2, int nr_wake,
  59. int nr_requeue, int opflags)
  60. {
  61. return futex(uaddr, FUTEX_CMP_REQUEUE, nr_wake, nr_requeue, uaddr2,
  62. val, opflags);
  63. }
  64. #endif /* _FUTEX_H */