summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibThreading/ConditionVariable.h
AgeCommit message (Collapse)Author
2022-01-14Everywhere: Use my new serenityos.org e-mail :^)kleines Filmröllchen
2021-09-12LibThreading: Add ConditionVariable wrapperkleines Filmröllchen
ConditionVariable is a thin wrapper over the pthread_cond_* APIs, just as Mutex is a wrapper over pthread_mutex. Because ConditionVariable might want to wait on a high-level Mutex, it needs to be friends with it.