diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-08-01 07:38:40 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-08-01 07:38:40 +0000 |
commit | 5dae71028591b6f6345791ec6ae52d95dac89e89 (patch) | |
tree | 2337f9a80c5eba21a33db3702e24203dbb34532b /TAO/tao/ORB_Core.cpp | |
parent | 6ba7d9c57ea0c04861397506e73ce08a9274d7b2 (diff) | |
download | ATCD-5dae71028591b6f6345791ec6ae52d95dac89e89.tar.gz |
Wed Aug 1 07:38:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/ORB_Core.cpp')
-rw-r--r-- | TAO/tao/ORB_Core.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp index ebf0dbbe3ab..3b1ba436fee 100644 --- a/TAO/tao/ORB_Core.cpp +++ b/TAO/tao/ORB_Core.cpp @@ -517,7 +517,7 @@ TAO_ORB_Core::init (int &argc, char *argv[] ) arg_shifter.consume_arg (); } else if (0 != (current_arg = arg_shifter.get_the_parameter - (ACE_LIB_TEXT("-ORBKeepalive")))) + (ACE_TEXT("-ORBKeepalive")))) { // Use SO_KEEPALIVE or not. so_keepalive = @@ -526,7 +526,7 @@ TAO_ORB_Core::init (int &argc, char *argv[] ) arg_shifter.consume_arg (); } else if (0 != (current_arg = arg_shifter.get_the_parameter - (ACE_LIB_TEXT("-ORBDontRoute")))) + (ACE_TEXT("-ORBDontRoute")))) { // Use SO_DONTROUTE or not. so_dontroute = @@ -1017,13 +1017,13 @@ TAO_ORB_Core::init (int &argc, char *argv[] ) arg_shifter.consume_arg (); } else if (0 != (current_arg = arg_shifter.get_the_parameter - (ACE_LIB_TEXT("-ORBUseParallelConnects")))) + (ACE_TEXT("-ORBUseParallelConnects")))) { use_parallel_connects = ACE_OS::atoi (current_arg); arg_shifter.consume_arg (); } else if (0 != (current_arg = arg_shifter.get_the_parameter - (ACE_LIB_TEXT("-ORBParallelConnectDelay")))) + (ACE_TEXT("-ORBParallelConnectDelay")))) { this->orb_params ()->parallel_connect_delay (ACE_OS::atoi (current_arg)); @@ -1049,14 +1049,14 @@ TAO_ORB_Core::init (int &argc, char *argv[] ) arg_shifter.consume_arg (); } else if (0 != (current_arg = arg_shifter.get_the_parameter - (ACE_LIB_TEXT("-ORBUseLocalMemoryPool")))) + (ACE_TEXT("-ORBUseLocalMemoryPool")))) { this->use_local_memory_pool_ = (0 != ACE_OS::atoi (current_arg)); arg_shifter.consume_arg (); } else if (0 != (current_arg = arg_shifter.get_the_parameter - (ACE_LIB_TEXT("-ORBMaxMessageSize")))) + (ACE_TEXT("-ORBMaxMessageSize")))) { this->orb_params_.max_message_size (ACE_OS::atoi (current_arg)); |