17INLINE
void MutexSimpleImpl::
27INLINE
bool MutexSimpleImpl::
29 if ((_flags & F_lock_count) != 0) {
32 _flags |= F_lock_count;
40INLINE
void MutexSimpleImpl::
42 nassertv((_flags & F_lock_count) != 0);
43 _flags &= ~F_lock_count;
45 if (_flags & F_has_waiters) {
53INLINE
void MutexSimpleImpl::
55 nassertv((_flags & F_lock_count) != 0);
56 _flags &= ~F_lock_count;
58 if (_flags & F_has_waiters) {