diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-10 08:49:56 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-10 08:49:56 +0000 |
commit | 64d036b51612261ffa53bbdba38ff8e6e99fc016 (patch) | |
tree | ff947ccd272b645b872902a961c0907b7f974469 /ace/Message_Queue.h | |
parent | 7db29418e44bdce4e3df96493b852118cdd82a4a (diff) | |
download | ATCD-64d036b51612261ffa53bbdba38ff8e6e99fc016.tar.gz |
eon
Diffstat (limited to 'ace/Message_Queue.h')
-rw-r--r-- | ace/Message_Queue.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h index 31710fdaef8..3be9699395c 100644 --- a/ace/Message_Queue.h +++ b/ace/Message_Queue.h @@ -95,6 +95,11 @@ public: // inserted consecutively. Returns -1 on failure, else the number // of items still on the queue. + int enqueue (ACE_Message_Block *new_item, ACE_Time_Value *tv = 0); + // This is an alias for <enqueue_prio>. It's only here for + // backwards compatibility and will go away in a subsequent release. + // Please use <enqueue_prio> instead. + int enqueue_tail (ACE_Message_Block *new_item, ACE_Time_Value *tv = 0); // Enqueue an <ACE_Message_Block *> at the end of the queue. // Returns -1 on failure, else the number of items still on the |