summaryrefslogtreecommitdiff
path: root/ACE/tests/Message_Queue_Test_Ex.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-03-29 12:38:46 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-03-29 12:38:46 +0000
commit43ffea66f5cf37908c8b487cd5012c1389774f21 (patch)
treec47c97c9c919cc504ad2cf5b4a54adfe3be0815d /ACE/tests/Message_Queue_Test_Ex.cpp
parent450bbbc7318a4af277e99e37a09746411789de61 (diff)
downloadATCD-43ffea66f5cf37908c8b487cd5012c1389774f21.tar.gz
Tue Mar 29 12:37:49 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/doxygen-convert-h.pl: Also convert idl files * apps/JAWS2/JAWS/Policy.h: * apps/JAWS2/JAWS/Reaper.h: * tests/Message_Queue_Test_Ex.cpp: * tests/Wild_Match_Test.cpp: Doxygen changes
Diffstat (limited to 'ACE/tests/Message_Queue_Test_Ex.cpp')
-rw-r--r--ACE/tests/Message_Queue_Test_Ex.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/ACE/tests/Message_Queue_Test_Ex.cpp b/ACE/tests/Message_Queue_Test_Ex.cpp
index 6bf8773ea87..0dc5a19f6e7 100644
--- a/ACE/tests/Message_Queue_Test_Ex.cpp
+++ b/ACE/tests/Message_Queue_Test_Ex.cpp
@@ -66,26 +66,25 @@ print_message (const ACE_TCHAR *message)
#if defined (ACE_HAS_THREADS)
typedef ACE_Message_Queue_Ex<User_Class, ACE_MT_SYNCH> SYNCH_QUEUE;
+/**
+ * Container for data passed to sender and receiver in
+ * performance test.
+ *
+ * For use in multithreaded performance test.
+ */
struct Queue_Wrapper
{
- // = TITLE
- // Container for data passed to sender and receiver in
- // performance test.
- //
- // = DESCRIPTION
- // For use in multithreaded performance test.
-
+ /// The message queue.
SYNCH_QUEUE *q_;
- // The message queue.
+ /// Pointer to messages blocks for sender to send to reciever.
User_Class **send_block_;
- // Pointer to messages blocks for sender to send to reciever.
+ /// Default constructor.
Queue_Wrapper (void)
: q_ (0), send_block_ (0)
{
}
- // Default constructor.
};
struct MQ_Ex_N_Tester_Wrapper