summaryrefslogtreecommitdiff
path: root/TAO/tao/Acceptor_Impl.cpp
diff options
context:
space:
mode:
authormarina <marina@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-26 19:11:05 +0000
committermarina <marina@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-26 19:11:05 +0000
commitdc5afda7c5f82b719b155bc2a363a64d8cfbc771 (patch)
tree5f71280b91de516842b6288149ef5eb2066d2f69 /TAO/tao/Acceptor_Impl.cpp
parent95df88639321e617de9e376b19a018ff7eff5ed7 (diff)
downloadATCD-dc5afda7c5f82b719b155bc2a363a64d8cfbc771.tar.gz
ChangeLogTag:Sat Aug 26 13:06:23 2000 Marina Spivak <marina@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Acceptor_Impl.cpp')
-rw-r--r--TAO/tao/Acceptor_Impl.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/TAO/tao/Acceptor_Impl.cpp b/TAO/tao/Acceptor_Impl.cpp
index b29f2481308..fe4b8df9200 100644
--- a/TAO/tao/Acceptor_Impl.cpp
+++ b/TAO/tao/Acceptor_Impl.cpp
@@ -40,8 +40,10 @@ ACE_RCSID(tao, Acceptor_Impl, "$Id$")
template <class SVC_HANDLER>
TAO_Creation_Strategy<SVC_HANDLER>::TAO_Creation_Strategy (TAO_ORB_Core *orb_core,
+ void *arg,
CORBA::Boolean flag)
: orb_core_ (orb_core),
+ arg_ (arg),
lite_flag_ (flag)
{
}
@@ -52,7 +54,8 @@ TAO_Creation_Strategy<SVC_HANDLER>::make_svc_handler (SVC_HANDLER *&sh)
if (sh == 0)
ACE_NEW_RETURN (sh,
SVC_HANDLER (this->orb_core_,
- this->lite_flag_),
+ this->lite_flag_,
+ this->arg_),
-1);
return 0;