diff options
author | Michi Henning <michi@zeroc.com> | 2004-07-05 00:25:30 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-07-05 00:25:30 +0000 |
commit | 882402353161f25970e18f70a4bb7b484105db04 (patch) | |
tree | e55c90c913674accc884c2c2b72e45e39862c3b7 /cpp/test/Ice/faultTolerance/TestI.cpp | |
parent | Slice checksums for IcePatch (diff) | |
download | ice-882402353161f25970e18f70a4bb7b484105db04.tar.bz2 ice-882402353161f25970e18f70a4bb7b484105db04.tar.xz ice-882402353161f25970e18f70a4bb7b484105db04.zip |
Changed Instance.cpp to print process ID only once if there are multiple
communicators.
Diffstat (limited to 'cpp/test/Ice/faultTolerance/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/faultTolerance/TestI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/faultTolerance/TestI.cpp b/cpp/test/Ice/faultTolerance/TestI.cpp index 12551b866d8..1f439c7ed7e 100644 --- a/cpp/test/Ice/faultTolerance/TestI.cpp +++ b/cpp/test/Ice/faultTolerance/TestI.cpp @@ -24,19 +24,19 @@ TestI::shutdown(const Ice::Current&) void TestI::abort(const Ice::Current&) { - exit(0); + ::_exit(0); } void TestI::idempotentAbort(const Ice::Current&) { - exit(0); + ::_exit(0); } void TestI::nonmutatingAbort(const Ice::Current&) const { - exit(0); + ::_exit(0); } Ice::Int |