summaryrefslogtreecommitdiff
path: root/ace/Synch_T.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-07 03:41:49 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-07 03:41:49 +0000
commit92682ffe5fb948f4f783c1c26fe3fa617dc2f6d0 (patch)
tree476856ad79fffb26121e903c00837408ca2dde0a /ace/Synch_T.h
parentf4b2bc691fdf0c1af5043eca265fa6b2381e7d38 (diff)
downloadATCD-92682ffe5fb948f4f783c1c26fe3fa617dc2f6d0.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r--ace/Synch_T.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 3671862ad17..66e3b98d3c1 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -288,7 +288,7 @@ public:
typedef ACE_Null_Mutex RW_MUTEX;
// "Do-nothing" RW Mutex type.
- typedef ACE_Null_Condition_Mutex CONDITION;
+ typedef ACE_Null_Condition CONDITION;
// "Do-nothing" Condition type.
typedef ACE_Null_Mutex SEMAPHORE;
@@ -296,9 +296,9 @@ public:
};
#else /* Necessary to support broken cfront-based C++ compilers... */
#if defined (ACE_HAS_OPTIMIZED_MESSAGE_QUEUE)
-#define ACE_NULL_SYNCH ACE_Null_Mutex, ACE_Null_Mutex,
+#define ACE_NULL_SYNCH ACE_Null_Mutex, ACE_Null_Condition, ACE_Null_Mutex
#else
-#define ACE_NULL_SYNCH ACE_Null_Mutex, ACE_Null_Condition_Mutex
+#define ACE_NULL_SYNCH ACE_Null_Mutex, ACE_Null_Condition
#endif /* ACE_HAS_OPTIMIZED_MESSAGE_QUEUE */
#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */
@@ -737,7 +737,7 @@ public:
#define ACE_SYNCH_SEMAPHORE ACE_MT_SYNCH::SEMAPHORE
#else /* Necessary to support broken cfront-based C++ compilers... */
#if defined (ACE_HAS_OPTIMIZED_MESSAGE_QUEUE)
-#define ACE_MT_SYNCH ACE_Thread_Mutex, ACE_Thread_Semaphore
+#define ACE_MT_SYNCH ACE_Thread_Mutex, ACE_Condition_Thread_Mutex, ACE_Thread_Semaphore
#else
#define ACE_MT_SYNCH ACE_Thread_Mutex, ACE_Condition_Thread_Mutex
#endif /* ACE_HAS_OPTIMIZED_MESSAGE_QUEUE */