summaryrefslogtreecommitdiff
path: root/tao/default_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tao/default_server.cpp')
-rw-r--r--tao/default_server.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/tao/default_server.cpp b/tao/default_server.cpp
index a9a07a7181e..424b43e5806 100644
--- a/tao/default_server.cpp
+++ b/tao/default_server.cpp
@@ -10,7 +10,6 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Default_Server_Strategy_Factory::TAO_Default_Server_Strategy_Factory (void)
: activate_server_connections_ (0),
thread_flags_ (THR_BOUND | THR_DETACHED),
- poa_lock_type_ (TAO_THREAD_LOCK),
thread_per_connection_use_timeout_ (-1)
{
}
@@ -21,19 +20,6 @@ TAO_Default_Server_Strategy_Factory::~TAO_Default_Server_Strategy_Factory (void)
}
int
-TAO_Default_Server_Strategy_Factory::enable_poa_locking (void)
-{
- switch (this->poa_lock_type_)
- {
- case TAO_NULL_LOCK:
- return 0;
- case TAO_THREAD_LOCK:
- default:
- return 1;
- }
-}
-
-int
TAO_Default_Server_Strategy_Factory::activate_server_connections (void)
{
return this->activate_server_connections_;
@@ -321,24 +307,6 @@ TAO_Default_Server_Strategy_Factory::parse_args (int argc, ACE_TCHAR* argv[])
}
}
else if (ACE_OS::strcasecmp (argv[curarg],
- ACE_TEXT("-ORBPOALock")) == 0)
- {
- ++curarg;
- if (curarg < argc)
- {
- ACE_TCHAR* name = argv[curarg];
-
- if (ACE_OS::strcasecmp (name,
- ACE_TEXT("thread")) == 0)
- this->poa_lock_type_ = TAO_THREAD_LOCK;
- else if (ACE_OS::strcasecmp (name,
- ACE_TEXT("null")) == 0)
- this->poa_lock_type_ = TAO_NULL_LOCK;
- else
- this->report_option_value_error (ACE_TEXT("-ORBPOALock"), name);
- }
- }
- else if (ACE_OS::strcasecmp (argv[curarg],
ACE_TEXT("-ORBThreadFlags")) == 0)
{
++curarg;