diff options
author | Jose <jose@zeroc.com> | 2014-11-12 11:49:48 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-11-12 11:49:48 +0100 |
commit | ab4db88fc809e3fca8ae3248e67062d8a2d41bf4 (patch) | |
tree | d9344cab07e3a4a931d724e23c251f2dc63bb84a /cpp | |
parent | Fixed (ICE-5857) rename manual -> Manual (diff) | |
download | ice-ab4db88fc809e3fca8ae3248e67062d8a2d41bf4.tar.bz2 ice-ab4db88fc809e3fca8ae3248e67062d8a2d41bf4.tar.xz ice-ab4db88fc809e3fca8ae3248e67062d8a2d41bf4.zip |
Fixed (ICE-5881) - OpenSSL locks callback assertion
Diffstat (limited to '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 |