Some missing from merge.

Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
Salja 2012-08-05 14:54:07 +02:00 committed by Antz
parent ec939a5bce
commit f4be15a7af
1895 changed files with 160408 additions and 53601 deletions

View file

@ -4,9 +4,11 @@
/**
* @file Condition_Recursive_Thread_Mutex.h
*
* $Id: Condition_Recursive_Thread_Mutex.h 96073 2012-08-17 13:39:55Z mcorino $
*
* Moved from Synch.h.
*
* @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//==========================================================================
@ -87,16 +89,19 @@ public:
void dump (void) const;
private:
// = Prevent assignment and copying.
void operator= (const ACE_Condition<ACE_Recursive_Thread_Mutex> &);
ACE_Condition (const ACE_Condition<ACE_Recursive_Thread_Mutex> &);
private:
/// A normal (i.e., non-recursive) condition variable.
ACE_cond_t cond_;
/// Reference to the recursive mutex.
ACE_Recursive_Thread_Mutex &mutex_;
};
typedef ACE_Condition<ACE_Recursive_Thread_Mutex> ACE_Condition_Recursive_Thread_Mutex;