summaryrefslogtreecommitdiff
path: root/TAO/tao/default_server.cpp
diff options
context:
space:
mode:
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],