summaryrefslogtreecommitdiff
path: root/ace/Message_Queue.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-05 03:50:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-05 03:50:23 +0000
commit30364e61ab0fe4d53c8c7774bc79e6472b6a3e07 (patch)
tree87ec474da386d20377cdedbc66e96c2a5d3ce830 /ace/Message_Queue.h
parentd62405d1cd53cd50a15b3447920235caf41f2b0e (diff)
downloadATCD-30364e61ab0fe4d53c8c7774bc79e6472b6a3e07.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 126500f4f7e..fdd57c5b4a4 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -249,10 +249,10 @@ protected:
size_t enqueue_waiters_;
// Number of threads waiting to enqueue a <Message_Block>.
#else
- ACE_SYNCH_CONDITION_T notempty_cond_;
+ ACE_SYNCH_CONDITION_T not_empty_cond_;
// Used to make threads sleep until the queue is no longer empty.
- ACE_SYNCH_CONDITION_T notfull_cond_;
+ ACE_SYNCH_CONDITION_T not_full_cond_;
// Used to make threads sleep until the queue is no longer full.
#endif /* ACE_LACKS_COND_T */
};