libmdbx/test/stub
2024-12-11 21:22:04 +03:00
..
LICENSE mdbx-test: fix build for __ANDROID_API__ < 24 (using pthread_barrier_t stub). 2022-01-05 17:47:45 +03:00
pthread_barrier.c mdbx: новые настройки clang-format (косметика). 2024-12-11 21:22:04 +03:00
pthread_barrier.h mdbx: новые настройки clang-format (косметика). 2024-12-11 21:22:04 +03:00
README.md mdbx-test: fix build for __ANDROID_API__ < 24 (using pthread_barrier_t stub). 2022-01-05 17:47:45 +03:00

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.