diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-27 23:20:36 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-27 23:20:36 +0000 |
commit | 274ec2db9dc6acd7434a9680c069e5d0333852f9 (patch) | |
tree | 52a7273875aa7fd54c401fbcbecebc744a7b32e5 /ace/Message_Queue.h | |
parent | ddf5e340e27dc2bf29d80a0965df02f3d04b8232 (diff) | |
download | ATCD-274ec2db9dc6acd7434a9680c069e5d0333852f9.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Message_Queue.h')
-rw-r--r-- | ace/Message_Queue.h | 6 |
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. }; |