summaryrefslogtreecommitdiff
path: root/libc/src/pthread/pthread_barrier_wait.cpp
AgeCommit message (Collapse)Author
2025-07-29[libc] Reland #148948 "Implement barriers for pthreads" (#151021)Uzair Nawaz
Fixed build dependencies for pthread_barrier_t (add __barrier_type to cmake dependencies)
2025-07-28Revert "[libc] Implement barriers for pthreads" (#151014)Uzair Nawaz
Reverts llvm/llvm-project#148948
2025-07-28[libc] Implement barriers for pthreads (#148948)Uzair Nawaz
Implemented barrier synchronization for pthreads - Uses condition variables internally for platform independence (platform-specific work is handled by the condition variable implementation) - Does NOT currently handle barrierattr pshared, this is a goal for a future patch