blob: a6a8fd1a915d8c7ec93a68931deac30b50a16e7f (
plain)
1
2
3
4
5
6
7
8
|
# DarwinPthreadBarrier
A pthread_barrier_t implementation for Mac OS/X
There is no pthread_barrier_t in Mac OS/X pthreads. This project fixes
this omission by providing a simple-minded barrier implementation based
on a pair of pthread_mutex_t and pthread_cond_t.
|