Internal structure to store the list of waiting threads. More...
Internal structure to store the list of waiting threads.
Definition at line 44 of file pthread_barrier.h.
#include <pthread_barrier.h>
Data Fields | |
struct pthread_barrier_waiting_node * | next |
The next waiting thread. | |
kernel_pid_t | pid |
The current thread to wake up. | |
volatile int | cont |
0 = spurious wake up, 1 = wake up | |
volatile int pthread_barrier_waiting_node::cont |
0 = spurious wake up, 1 = wake up
Definition at line 48 of file pthread_barrier.h.
struct pthread_barrier_waiting_node* pthread_barrier_waiting_node::next |
The next waiting thread.
Definition at line 46 of file pthread_barrier.h.
kernel_pid_t pthread_barrier_waiting_node::pid |
The current thread to wake up.
Definition at line 47 of file pthread_barrier.h.