summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-11-28 00:40:54 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-11-28 00:40:54 +0000
commitca6939d251500473d52246568e25a526849973be (patch)
tree10eadeb6288e89addf968dd61b88e11eee43c9da
parent28719d8de96a3bbf17102d7fe3ec8ef4130b2ad5 (diff)
downloadATCD-ca6939d251500473d52246568e25a526849973be.tar.gz
ChangeLogTag:Sat Nov 27 18:36:48 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--ChangeLog-99b7
-rw-r--r--tests/Priority_Buffer_Test.cpp58
2 files changed, 47 insertions, 18 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index e8faab2f143..1eb40bec540 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,10 @@
+Sat Nov 27 18:36:48 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * tests/Priority_Buffer_Test.cpp (consumer): Revised the test
+ so that it doesn't bother to check the priority in the
+ ACE_ASSERT macro if we're sending a shutdown message. Thanks to
+ Ivan Murphy and Darrell Brunsch for narrowing this down.
+
Thu Nov 25 13:32:00 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* netsvcs/lib/Client_Logging_Handler.cpp (parse_args): Make sure
diff --git a/tests/Priority_Buffer_Test.cpp b/tests/Priority_Buffer_Test.cpp
index 4a803d69ed5..9617e25ae42 100644
--- a/tests/Priority_Buffer_Test.cpp
+++ b/tests/Priority_Buffer_Test.cpp
@@ -10,8 +10,8 @@
//
// = DESCRIPTION
// This is a simple test to illustrate the priority mechanism of
-// ACE Message_Queues. The producer uses an ASX Message_Queue to
-// enqueue a bunch of messages with different priorities which
+// <ACE_Message_Queue>s. The producer uses an <ACE_Message_Queue>
+// to enqueue a bunch of messages with different priorities which
// are then dequeued by the consumer.
//
// = AUTHOR
@@ -47,16 +47,19 @@ static const long max_queue = LONG_MAX;
static void *
consumer (void *args)
{
- ACE_Message_Queue<ACE_MT_SYNCH> *msg_queue = (ACE_Message_Queue<ACE_MT_SYNCH> *) args;
+ ACE_Message_Queue<ACE_MT_SYNCH> *msg_queue =
+ ACE_reinterpret_cast (ACE_Message_Queue<ACE_MT_SYNCH> *,
+ args);
u_long cur_priority = 27;
- ACE_UNUSED_ARG (cur_priority); // To suppress ghs warning about unused
- // local variable "cur_priority".
+ ACE_UNUSED_ARG (cur_priority);
+ // To suppress ghs warning about unused local variable
+ // "cur_priority".
int local_count = 0;
- // Keep looping, reading a message out of the queue, until we
- // get a message with a length == 0, which signals us to quit.
+ // Keep looping, reading a message out of the queue, until we get a
+ // message with a length == 0, which signals us to quit.
for (char c = 'z'; ; c--)
{
ACE_Message_Block *mb = 0;
@@ -69,11 +72,15 @@ consumer (void *args)
local_count++;
int length = mb->length ();
- ACE_ASSERT (mb->msg_priority () < cur_priority);
- cur_priority = mb->msg_priority ();
if (length > 0)
- ACE_ASSERT (c == *mb->rd_ptr ());
+ {
+ // This isn't a "shutdown" message, so process it
+ // "normally."
+ ACE_ASSERT (c == *mb->rd_ptr ());
+ ACE_ASSERT (mb->msg_priority () < cur_priority);
+ cur_priority = mb->msg_priority ();
+ }
// Free up the buffer memory and the Message_Block. Note that
// the destructor of Message Block will delete the the actual
@@ -81,8 +88,10 @@ consumer (void *args)
mb->release ();
if (length == 0)
+ // This was a "shutdown" message, so break out of the loop.
break;
}
+
ACE_ASSERT (local_count == count);
return 0;
}
@@ -96,7 +105,9 @@ consumer (void *args)
static void *
producer (void *args)
{
- ACE_Message_Queue<ACE_MT_SYNCH> *msg_queue = (ACE_Message_Queue<ACE_MT_SYNCH> *) args;
+ ACE_Message_Queue<ACE_MT_SYNCH> *msg_queue =
+ ACE_reinterpret_cast (ACE_Message_Queue<ACE_MT_SYNCH> *,
+ args);
ACE_Message_Block *mb;
@@ -117,14 +128,21 @@ producer (void *args)
// Enqueue in priority order.
if (msg_queue->enqueue_prio (mb) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("(%t) %p\n"), ASYS_TEXT ("put_next")), 0);
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ASYS_TEXT ("(%t) %p\n"),
+ ASYS_TEXT ("put_next")),
+ 0);
}
// Now send a 0-sized shutdown message to the other thread
- ACE_NEW_RETURN (mb, ACE_Message_Block ((size_t) 0), 0);
+ ACE_NEW_RETURN (mb,
+ ACE_Message_Block ((size_t) 0),
+ 0);
if (msg_queue->enqueue_tail (mb) == -1)
- ACE_ERROR ((LM_ERROR, ASYS_TEXT ("(%t) %p\n"), ASYS_TEXT ("put_next")));
+ ACE_ERROR ((LM_ERROR,
+ ASYS_TEXT ("(%t) %p\n"),
+ ASYS_TEXT ("put_next")));
count++;
@@ -149,10 +167,14 @@ main (int, ASYS_TCHAR *[])
// Message queue.
ACE_Message_Queue<ACE_MT_SYNCH> msg_queue (max_queue);
- if (ACE_Thread_Manager::instance ()->spawn (ACE_THR_FUNC (producer),
- (void *) &msg_queue,
- THR_NEW_LWP | THR_DETACHED) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("spawn")), 1);
+ if (ACE_Thread_Manager::instance ()->spawn
+ (ACE_THR_FUNC (producer),
+ (void *) &msg_queue,
+ THR_NEW_LWP | THR_DETACHED) == -1)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ASYS_TEXT ("%p\n"),
+ ASYS_TEXT ("spawn")),
+ 1);
// Wait for producer and consumer threads to exit.
ACE_Thread_Manager::instance ()->wait ();