ARGOBOTS
dce6e727ffc4ca5b3ffc04cb9517c6689be51ec5
|
Go to the source code of this file.
Data Structures | |
struct | ABTD_futex_multiple |
struct | ABTD_futex_single |
Typedefs | |
typedef struct ABTD_futex_multiple | ABTD_futex_multiple |
typedef struct ABTD_futex_single | ABTD_futex_single |
Functions | |
static void | ABTD_futex_multiple_init (ABTD_futex_multiple *p_futex) |
void | ABTD_futex_wait_and_unlock (ABTD_futex_multiple *p_futex, ABTD_spinlock *p_lock) |
void | ABTD_futex_timedwait_and_unlock (ABTD_futex_multiple *p_futex, ABTD_spinlock *p_lock, double wait_time_sec) |
void | ABTD_futex_broadcast (ABTD_futex_multiple *p_futex) |
static void | ABTD_futex_single_init (ABTD_futex_single *p_futex) |
void | ABTD_futex_suspend (ABTD_futex_single *p_futex) |
void | ABTD_futex_resume (ABTD_futex_single *p_futex) |
typedef struct ABTD_futex_multiple ABTD_futex_multiple |
Definition at line 13 of file abtd_futex.h.
typedef struct ABTD_futex_single ABTD_futex_single |
Definition at line 37 of file abtd_futex.h.
void ABTD_futex_broadcast | ( | ABTD_futex_multiple * | p_futex | ) |
Definition at line 174 of file abtd_futex.c.
Referenced by ABTI_waitlist_broadcast(), and ABTI_waitlist_signal().
|
inlinestatic |
Definition at line 79 of file abtd_futex.h.
Referenced by ABTI_waitlist_init().
void ABTD_futex_resume | ( | ABTD_futex_single * | p_futex | ) |
Definition at line 216 of file abtd_futex.c.
Referenced by ABTI_ythread_exit(), and ABTI_ythread_resume_joiner().
|
inlinestatic |
Definition at line 88 of file abtd_futex.h.
void ABTD_futex_suspend | ( | ABTD_futex_single * | p_futex | ) |
Definition at line 191 of file abtd_futex.c.
void ABTD_futex_timedwait_and_unlock | ( | ABTD_futex_multiple * | p_futex, |
ABTD_spinlock * | p_lock, | ||
double | wait_time_sec | ||
) |
Definition at line 117 of file abtd_futex.c.
Referenced by ABTI_waitlist_wait_timedout_and_unlock().
void ABTD_futex_wait_and_unlock | ( | ABTD_futex_multiple * | p_futex, |
ABTD_spinlock * | p_lock | ||
) |
Definition at line 87 of file abtd_futex.c.
Referenced by ABTI_waitlist_wait_and_unlock().