17 INLINE ConditionVarSimpleImpl::
18 ConditionVarSimpleImpl(
MutexTrueImpl &mutex) : _mutex(mutex) {
24 INLINE ConditionVarSimpleImpl::
25 ~ConditionVarSimpleImpl() {
31 INLINE
void ConditionVarSimpleImpl::
33 if (_flags & F_has_waiters) {
41 INLINE
void ConditionVarSimpleImpl::
43 if (_flags & F_has_waiters) {
A fake mutex implementation for single-threaded applications that don't need any synchronization cont...