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