21 INLINE MutexSimpleImpl::
30 INLINE MutexSimpleImpl::
39 INLINE
void MutexSimpleImpl::
51 INLINE
bool MutexSimpleImpl::
53 if ((_flags & F_lock_count) != 0) {
56 _flags |= F_lock_count;
66 INLINE
void MutexSimpleImpl::
68 nassertv((_flags & F_lock_count) != 0);
69 _flags &= ~F_lock_count;
71 if (_flags & F_has_waiters) {
82 INLINE
void MutexSimpleImpl::
84 nassertv((_flags & F_lock_count) != 0);
85 _flags &= ~F_lock_count;
87 if (_flags & F_has_waiters) {