summaryrefslogtreecommitdiff
path: root/ace/Message_Queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Message_Queue.h')
-rw-r--r--ace/Message_Queue.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h
index b251e62cd0d..01328a6655b 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -133,9 +133,6 @@ private:
// Include the templates here.
#include "ace/Message_Queue_T.h"
-// This typedef is used to get around a compiler bug in g++/vxworks.
-typedef ACE_Message_Queue<ACE_SYNCH> ACE_DEFAULT_MESSAGE_QUEUE_TYPE;
-
#if defined (VXWORKS)
# include /**/ <msgQLib.h>
@@ -153,22 +150,22 @@ class ACE_Message_Queue_Vx : public ACE_Message_Queue<ACE_NULL_SYNCH>
//
// NOTE: *Many* ACE_Message_Queue features are not supported with
// this specialization, including:
- // * The two size arguments to the constructor and <open> are
+ // * The two size arguments to the constructor and open () are
// interpreted differently. The first is interpreted as the
// maximum number of bytes in a message. The second is
// interpreted as the maximum number of messages that can be
// queued.
- // * <dequeue_head> *requires* that the ACE_Message_Block
+ // * dequeue_head () *requires* that the ACE_Message_Block
// pointer argument point to an ACE_Message_Block that was
// allocated by the caller. It must be big enough to support
// the received message, without using continutation. The
// pointer argument is not modified.
// * Message priority. MSG_Q_FIFO is hard-coded.
// * enqueue method timeouts.
- // * <peek_dequeue_head>.
- // * <ACE_Message_Queue_Iterators>.
+ // * peek_dequeue_head ().
+ // * ACE_Message_Queue_Iterators.
// * The ability to change low and high water marks after creation.
- // * <Message_Block> chains. The continuation field of <ACE_Message_Block>
+ // * Message_Block chains. The continuation field of ACE_Message_Block
// * is ignored; only the first block of a fragment chain is
// * recognized.
public: