summaryrefslogtreecommitdiff
path: root/ace/Message_Queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Message_Queue.h')
-rw-r--r--ace/Message_Queue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h
index 981ec4f1192..09e799b5cb1 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -233,13 +233,13 @@ protected:
// The notification strategy used when a new message is enqueued.
// = Synchronization primitives for controlling concurrent access.
- ACE_SYNCH_MUTEX lock_;
+ ACE_SYNCH_MUTEX_T lock_;
// Protect queue from concurrent access.
- ACE_SYNCH_CONDITION notempty_cond_;
+ ACE_SYNCH_CONDITION_T notempty_cond_;
// Used to make threads sleep until the queue is no longer empty.
- ACE_SYNCH_CONDITION notfull_cond_;
+ ACE_SYNCH_CONDITION_T notfull_cond_;
// Used to make threads sleep until the queue is no longer full.
};