summaryrefslogtreecommitdiff
path: root/ace/Synch_T.h
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1997-10-13 22:39:20 +0000
committerSteve Huston <shuston@riverace.com>1997-10-13 22:39:20 +0000
commit20b2efe68e77f07b75d222a2165cb5eb0b7740ff (patch)
tree063ef4d480ba6df421d491f56ac04ce36daf869e /ace/Synch_T.h
parentc9d5372ea6016a6a3bbc6e855ac6ed508583be97 (diff)
downloadATCD-20b2efe68e77f07b75d222a2165cb5eb0b7740ff.tar.gz
Changed ACE_SYNCH_CONDITION for non-ACE_HAS_TEMPLATE_TYPEDEFS and with threads
to specify a mutex class on the condition - of the 3 possibilities for the definition of ACE_SYNCH_CONDITION, it is the only case which requires a template argument. Timer_Queue_Adapters.h was the only user of that definition, and I removed the template argument from it's ACE_SYNCH_CONDITION condition_ member.
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r--ace/Synch_T.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 134e26cb328..a00bad885cd 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -775,7 +775,7 @@ public:
#define ACE_SYNCH_PROCESS_MUTEX ACE_Process_Mutex
#define ACE_SYNCH_RECURSIVE_MUTEX ACE_Recursive_Thread_Mutex
#define ACE_SYNCH_RW_MUTEX ACE_RW_Thread_Mutex
-#define ACE_SYNCH_CONDITION ACE_Thread_Condition
+#define ACE_SYNCH_CONDITION ACE_Thread_Condition<ACE_Thread_Mutex>
#define ACE_SYNCH_SEMAPHORE ACE_Thread_Semaphore
#define ACE_SYNCH_NULL_SEMAPHORE ACE_Null_Mutex
#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */