#include <futex.h>#include <atomic.h>#include <libc.h>#include <sys/types.h>Go to the source code of this file.
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.c.
1.4.7