summaryrefslogtreecommitdiff
path: root/ace/Message_Queue.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-05 16:51:58 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-05 16:51:58 +0000
commit7df8fdf7116c317424e30ab83e3a89b6f2b9e568 (patch)
tree461d670e753b85c960bd34d3709fe7031c3bf729 /ace/Message_Queue.h
parent55a945b63c290d4f2a7c02392291a5af2f67ee8a (diff)
downloadATCD-7df8fdf7116c317424e30ab83e3a89b6f2b9e568.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Message_Queue.h')
-rw-r--r--ace/Message_Queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h
index fdd57c5b4a4..0deac33536c 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -237,10 +237,10 @@ protected:
// Protect queue from concurrent access.
#if defined (ACE_LACKS_COND_T)
- ACE_SYNCH_SEMAPHORE_T not_empty_cond;
+ ACE_SYNCH_SEMAPHORE_T not_empty_cond_;
// Used to make threads sleep until the queue is no longer empty.
- ACE_SYNCH_SEMAPHORE_T not_full_cond;
+ ACE_SYNCH_SEMAPHORE_T not_full_cond_;
// Used to make threads sleep until the queue is no longer full.
size_t dequeue_waiters_;