summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-07 07:13:21 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-07 07:13:21 +0000
commit48dfb5e0a030a0b3a62719daf0dd74fa9a73d13d (patch)
treed400f22852a6aa3c638f67ce9d6da569636d88c9
parent1ce3b6e5cf2ed9187e9ad60fab0cdec234d1db20 (diff)
downloadATCD-48dfb5e0a030a0b3a62719daf0dd74fa9a73d13d.tar.gz
*** empty log message ***
-rw-r--r--ace/Task_T.h3
-rw-r--r--examples/Reactor/ReactorEx/test_reactorEx.cpp4
-rw-r--r--examples/Reactor/WFMO_Reactor/test_reactorEx.cpp4
3 files changed, 4 insertions, 7 deletions
diff --git a/ace/Task_T.h b/ace/Task_T.h
index 27f5b7d144f..9549a05b90b 100644
--- a/ace/Task_T.h
+++ b/ace/Task_T.h
@@ -37,9 +37,6 @@ class ACE_Task : public ACE_Task_Base
friend class ACE_Module<ACE_SYNCH_2>;
friend class ACE_Module_Type;
public:
- // Trait.
- typedef ACE_SYNCH_2 SYNCH;
-
// = Initialization/termination methods.
ACE_Task (ACE_Thread_Manager *thr_mgr = 0,
ACE_Message_Queue<ACE_SYNCH_2> *mq = 0);
diff --git a/examples/Reactor/ReactorEx/test_reactorEx.cpp b/examples/Reactor/ReactorEx/test_reactorEx.cpp
index 1a033eae434..334cfce80aa 100644
--- a/examples/Reactor/ReactorEx/test_reactorEx.cpp
+++ b/examples/Reactor/ReactorEx/test_reactorEx.cpp
@@ -142,8 +142,8 @@ Peer_Handler::Peer_Handler (int argc, char *argv[])
// This code sets up the message to notify us when a new message is
// added to the queue. Actually, the queue notifies ReactorEx which
// then notifies us.
- ACE_Message_Queue<Peer_Handler::SYNCH>* mq;
- ACE_NEW (mq, ACE_Message_Queue<Peer_Handler::SYNCH>);
+ ACE_Message_Queue<ACE_MT_SYNCH>* mq;
+ ACE_NEW (mq, ACE_Message_Queue<ACE_MT_SYNCH>);
mq->notification_strategy (&this->strategy_);
this->msg_queue (mq);
diff --git a/examples/Reactor/WFMO_Reactor/test_reactorEx.cpp b/examples/Reactor/WFMO_Reactor/test_reactorEx.cpp
index 1a033eae434..334cfce80aa 100644
--- a/examples/Reactor/WFMO_Reactor/test_reactorEx.cpp
+++ b/examples/Reactor/WFMO_Reactor/test_reactorEx.cpp
@@ -142,8 +142,8 @@ Peer_Handler::Peer_Handler (int argc, char *argv[])
// This code sets up the message to notify us when a new message is
// added to the queue. Actually, the queue notifies ReactorEx which
// then notifies us.
- ACE_Message_Queue<Peer_Handler::SYNCH>* mq;
- ACE_NEW (mq, ACE_Message_Queue<Peer_Handler::SYNCH>);
+ ACE_Message_Queue<ACE_MT_SYNCH>* mq;
+ ACE_NEW (mq, ACE_Message_Queue<ACE_MT_SYNCH>);
mq->notification_strategy (&this->strategy_);
this->msg_queue (mq);