21 INLINE ConditionVarSimpleImpl::
22 ConditionVarSimpleImpl(
MutexTrueImpl &mutex) : _mutex(mutex) {
30 INLINE ConditionVarSimpleImpl::
31 ~ConditionVarSimpleImpl() {
39 INLINE
void ConditionVarSimpleImpl::
41 if (_flags & F_has_waiters) {
51 INLINE
void ConditionVarSimpleImpl::
53 if (_flags & F_has_waiters) {
A fake mutex implementation for single-threaded applications that don't need any synchronization cont...