diff options
Diffstat (limited to 'cpp/test/Ice/faultTolerance/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/faultTolerance/TestI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/faultTolerance/TestI.cpp b/cpp/test/Ice/faultTolerance/TestI.cpp index f9e970cf8f4..98ecc2431d7 100644 --- a/cpp/test/Ice/faultTolerance/TestI.cpp +++ b/cpp/test/Ice/faultTolerance/TestI.cpp @@ -23,13 +23,13 @@ TestI::shutdown(const Ice::Current& current) void TestI::abort(const Ice::Current&) { - exit(0); + _exit(0); } void TestI::idempotentAbort(const Ice::Current&) { - exit(0); + _exit(0); } Ice::Int |