diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-17 10:41:37 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-17 10:41:37 +0100 |
commit | 78045a2ee2bee3a4521af3606d671f644e409fc2 (patch) | |
tree | 2ccc4ee7c17b862b9f17c7a93c234e66ca1aadf9 /TAO/examples/PluggableUDP | |
parent | fe0a8e3c6c8bf1d10a71d1eee6a956c3560bd562 (diff) | |
download | ATCD-78045a2ee2bee3a4521af3606d671f644e409fc2.tar.gz |
bool changes
Diffstat (limited to 'TAO/examples/PluggableUDP')
3 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.cpp b/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.cpp index f453fbbb379..b0f4c261305 100644 --- a/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.cpp +++ b/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.cpp @@ -152,7 +152,7 @@ UDP_PerformanceClient::svc () // Shut down local ORB, trigger the end of the ORB event loop // in the main thread. - orb_->shutdown (0); + orb_->shutdown (false); } catch (const CORBA::Exception& ex) { diff --git a/TAO/examples/PluggableUDP/tests/Performance/UDP_i.cpp b/TAO/examples/PluggableUDP/tests/Performance/UDP_i.cpp index 9b5d7de3b6c..18a7e506b5d 100644 --- a/TAO/examples/PluggableUDP/tests/Performance/UDP_i.cpp +++ b/TAO/examples/PluggableUDP/tests/Performance/UDP_i.cpp @@ -114,7 +114,7 @@ UDP_i::shutdown (void) try { // Instruct the ORB to shutdown. - this->orb_->shutdown (0); + this->orb_->shutdown (false); } catch (const CORBA::Exception& ex) { diff --git a/TAO/examples/PluggableUDP/tests/SimplePerformance/test_i.cpp b/TAO/examples/PluggableUDP/tests/SimplePerformance/test_i.cpp index 2986f5ce526..a9c9d47744e 100644 --- a/TAO/examples/PluggableUDP/tests/SimplePerformance/test_i.cpp +++ b/TAO/examples/PluggableUDP/tests/SimplePerformance/test_i.cpp @@ -36,7 +36,7 @@ Simple_Server_i::shutdown (void) "Simple_Server_i::shutdown\n")); try { - this->orb_->shutdown (0); + this->orb_->shutdown (false); } catch (const CORBA::Exception& ex) { |