summaryrefslogtreecommitdiff
path: root/ace/Message_Queue.cpp
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-01-17 19:12:28 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-01-17 19:12:28 +0000
commit021c4ec1e9255e364b6e3c90468b696c141d0d6d (patch)
tree3216eaf06bc19c4878e5aa4b0ec43d9539b850c5 /ace/Message_Queue.cpp
parent693a93967f3ab67b6eb5d2831c9c1352bcff8dbc (diff)
downloadATCD-021c4ec1e9255e364b6e3c90468b696c141d0d6d.tar.gz
ChangeLogTag: Thu Jan 17 13:11:27 2002 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ace/Message_Queue.cpp')
-rw-r--r--ace/Message_Queue.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/ace/Message_Queue.cpp b/ace/Message_Queue.cpp
index bd4189d2f3c..0456f6f3fb5 100644
--- a/ace/Message_Queue.cpp
+++ b/ace/Message_Queue.cpp
@@ -204,6 +204,15 @@ ACE_Message_Queue_Vx::enqueue_i (ACE_Message_Block *new_item)
ACE_NOTSUP_RETURN (-1);
}
+int
+ACE_Message_Queue_Vx::enqueue_deadline_i (ACE_Message_Block *new_item)
+{
+ ACE_TRACE ("ACE_Message_Queue_Vx::enqueue_deadline_i");
+
+ // Just delegate to enqueue_tail_i.
+ return enqueue_tail_i (new_item);
+}
+
// Actually get the first ACE_Message_Block (no locking, so must be
// called with locks held). This method assumes that the queue has at
// least one item in it when it is called.
@@ -228,6 +237,27 @@ ACE_Message_Queue_Vx::dequeue_head_i (ACE_Message_Block *&first_item)
return ::msgQNumMsgs (msgq ());
}
+int
+ACE_Message_Queue_Vx::dequeue_prio_i (ACE_Message_Block *& /*dequeued*/)
+{
+ ACE_TRACE ("ACE_Message_Queue_Vx::dequeue_prio_i");
+ ACE_NOTSUP_RETURN (-1);
+}
+
+int
+ACE_Message_Queue_Vx::dequeue_tail_i (ACE_Message_Block *& /*dequeued*/)
+{
+ ACE_TRACE ("ACE_Message_Queue_Vx::dequeue_tail_i");
+ ACE_NOTSUP_RETURN (-1);
+}
+
+int
+ACE_Message_Queue_Vx::dequeue_deadline_i (ACE_Message_Block *& /*dequeued*/)
+{
+ ACE_TRACE ("ACE_Message_Queue_Vx::dequeue_deadline_i");
+ ACE_NOTSUP_RETURN (-1);
+}
+
// Take a look at the first item without removing it.
int