31#define PTHREAD_PROCESS_SHARED (0) 
   38#define PTHREAD_PROCESS_PRIVATE (1) 
int16_t kernel_pid_t
Unique process identifier.
 
Mutex for thread synchronization.
 
int pthread_barrier_wait(pthread_barrier_t *barrier)
Waiting on a synchronization barrier.
 
int pthread_barrier_init(pthread_barrier_t *barrier, const pthread_barrierattr_t *attr, unsigned int count)
Initializes a pthread_barrier_t.
 
int pthread_barrierattr_init(pthread_barrierattr_t *attr)
Initialize a pthread_barrierattr_t.
 
int pthread_barrierattr_setpshared(pthread_barrierattr_t *attr, int pshared)
Set if the barrier should be shared with child processes.
 
int pthread_barrierattr_destroy(pthread_barrierattr_t *attr)
Destroy a pthread_barrierattr_t.
 
int pthread_barrierattr_getpshared(const pthread_barrierattr_t *attr, int *pshared)
Returns whether the barrier attribute was set to be shared.
 
struct pthread_barrier_waiting_node pthread_barrier_waiting_node_t
Internal structure to store the list of waiting threads.
 
int pthread_barrier_destroy(pthread_barrier_t *barrier)
Destroys a pthread_barrier_t.
 
A synchronization barrier.
 
struct pthread_barrier_waiting_node * next
The first waiting thread.
 
mutex_t mutex
Mutex to unlock to wake the thread up.
 
volatile int count
Wait for N more threads before waking everyone up.
 
Internal structure to store the list of waiting threads.
 
volatile int cont
0 = spurious wake up, 1 = wake up
 
struct pthread_barrier_waiting_node * next
The next waiting thread.
 
kernel_pid_t pid
The current thread to wake up.
 
Details for a pthread_barrier_t.
 
int pshared
See pthread_barrierattr_setpshared() and pthread_barrierattr_getpshared().