57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
// Filename: conditionVarSimpleImpl.I
|
|
// Created by: drose (19Jun07)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ConditionVarSimpleImpl::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE ConditionVarSimpleImpl::
|
|
ConditionVarSimpleImpl(MutexTrueImpl &mutex) : _mutex(mutex) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ConditionVarSimpleImpl::Destructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE ConditionVarSimpleImpl::
|
|
~ConditionVarSimpleImpl() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ConditionVarSimpleImpl::notify
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void ConditionVarSimpleImpl::
|
|
notify() {
|
|
if (_flags & F_has_waiters) {
|
|
do_notify();
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ConditionVarSimpleImpl::notify_all
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void ConditionVarSimpleImpl::
|
|
notify_all() {
|
|
if (_flags & F_has_waiters) {
|
|
do_notify_all();
|
|
}
|
|
}
|