diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-10 17:29:47 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-10 17:29:47 +0000 |
commit | cd2720a7be9df69befea27844942194ff06dbfbe (patch) | |
tree | bce39a0efee1fb4305ca1bc731fc54bc60c6b64c /TAO/tao/default_server.cpp | |
parent | cc89bb9d50a3e96822909ed05c74e196830e1b37 (diff) | |
download | ATCD-cd2720a7be9df69befea27844942194ff06dbfbe.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.cpp | 9 |
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], |