summaryrefslogtreecommitdiff
path: root/TAO/tao/Acceptor_Impl.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-04-25 21:22:24 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-04-25 21:22:24 +0000
commitc83ac63a27799bb806a649a374bcbb6612f06a50 (patch)
treea3a2281d0b0a6baad413c2a04980ecf45e8dfafc /TAO/tao/Acceptor_Impl.cpp
parent22e102b7cdaba8915e95672a57dd976e0a643795 (diff)
downloadATCD-c83ac63a27799bb806a649a374bcbb6612f06a50.tar.gz
ChangeLogTag: Wed Apr 25 16:09:25 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Acceptor_Impl.cpp')
-rw-r--r--TAO/tao/Acceptor_Impl.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/TAO/tao/Acceptor_Impl.cpp b/TAO/tao/Acceptor_Impl.cpp
index af43c0def1a..5ee8a7b7ed9 100644
--- a/TAO/tao/Acceptor_Impl.cpp
+++ b/TAO/tao/Acceptor_Impl.cpp
@@ -95,14 +95,9 @@ TAO_Concurrency_Strategy<SVC_HANDLER>::activate_svc_handler (SVC_HANDLER *sh,
return sh->activate (f->server_connection_thread_flags (),
f->server_connection_thread_count ());
- // reactive concurrency model
-
- // Also set the flag in the connection handler to indicate whether
- // the handler has been registered with the reactor
- sh->is_registered (1);
-
- return this->orb_core_->reactor ()->register_handler
- (sh, ACE_Event_Handler::READ_MASK);
+ // reactive concurrency model. We may want to register ourselves
+ // with the reactor. Call the register handler on the transport.
+ return sh->transport ()->register_handler ();
}
////////////////////////////////////////////////////////////////////////////////