summaryrefslogblamecommitdiff
path: root/src/thread/pthread_barrier_init.c
blob: 736d10146faf86cc432be85593482ddada09fb85 (plain) (tree)
1
2
3
4
5
6
7
8




                                                                                              
                                                        

                 
#include "pthread_impl.h"

int pthread_barrier_init(pthread_barrier_t *b, const pthread_barrierattr_t *a, unsigned count)
{
	if (!count) return EINVAL;
	*b = (pthread_barrier_t){ ._b_limit = count-1 };
	return 0;
}