summaryrefslogtreecommitdiff
path: root/TAO/tao/default_server.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-10 17:29:47 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-10 17:29:47 +0000
commit21f89dd6554bb759595ea846f90f59bab85c0361 (patch)
treebce39a0efee1fb4305ca1bc731fc54bc60c6b64c /TAO/tao/default_server.cpp
parentd3c5a422f93b8f3ccab64f13a4c98f3b82cd0679 (diff)
downloadATCD-21f89dd6554bb759595ea846f90f59bab85c0361.tar.gz
Thu Jun 10 12:12:24 1999 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/default_server.cpp')
-rw-r--r--TAO/tao/default_server.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/TAO/tao/default_server.cpp b/TAO/tao/default_server.cpp
index c961a8df541..e6597fb902d 100644
--- a/TAO/tao/default_server.cpp
+++ b/TAO/tao/default_server.cpp
@@ -13,7 +13,6 @@ TAO_Default_Server_Strategy_Factory::TAO_Default_Server_Strategy_Factory (void)
: activate_server_connections_ (0),
thread_flags_ (THR_BOUND),
poa_lock_type_ (TAO_THREAD_LOCK),
- poa_mgr_lock_type_ (TAO_THREAD_LOCK),
event_loop_lock_type_ (TAO_NULL_LOCK),
cached_connector_lock_type_ (TAO_THREAD_LOCK)
{
@@ -177,7 +176,7 @@ TAO_Default_Server_Strategy_Factory::parse_args (int argc, char *argv[])
}
}
else if (ACE_OS::strcasecmp (argv[curarg],
- "-ORBTableSize") == 0
+ "-ORBTableSize") == 0
|| ACE_OS::strcasecmp (argv[curarg],
"-ORBActiveObjectMapSize") == 0)
{
@@ -359,7 +358,7 @@ TAO_Default_Server_Strategy_Factory::parse_args (int argc, char *argv[])
}
}
else if (ACE_OS::strcasecmp (argv[curarg],
- "-ORBEventLock") == 0)
+ "-ORBEventLoopLock") == 0)
{
curarg++;
if (curarg < argc)
@@ -368,10 +367,10 @@ TAO_Default_Server_Strategy_Factory::parse_args (int argc, char *argv[])
if (ACE_OS::strcasecmp (name,
"thread") == 0)
- this->poa_mgr_lock_type_ = TAO_THREAD_LOCK;
+ this->event_loop_lock_type_ = TAO_THREAD_LOCK;
else if (ACE_OS::strcasecmp (name,
"null") == 0)
- this->poa_mgr_lock_type_ = TAO_NULL_LOCK;
+ this->event_loop_lock_type_ = TAO_NULL_LOCK;
}
}
else if (ACE_OS::strcasecmp (argv[curarg],