#include <atomic.h>#include <sys/types.h>Go to the source code of this file.
Defines | |
| #define | FUTEX_INITIALIZER {1} |
Typedefs | |
| typedef atomic_t | futex_t |
Functions | |
| int | futex_down (futex_t *futex) |
| Down the futex. | |
| void | futex_initialize (futex_t *futex, int val) |
| Initialize futex counter. | |
| int | futex_trydown (futex_t *futex) |
| Try to down the futex. | |
| int | futex_up (futex_t *futex) |
| Up the futex. | |
Definition in file futex.h.
1.4.7