summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/faultTolerance/TestI.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-07-06 04:10:07 +0000
committerMichi Henning <michi@zeroc.com>2004-07-06 04:10:07 +0000
commit65d19258f37bec2de10cb85ce850868eea18251b (patch)
tree846c4d9b304888005055412fde76cbca9beb10c3 /cpp/test/Ice/faultTolerance/TestI.cpp
parentChanged test scripts to use unbuffered I/O so when we run the scripts from (diff)
downloadice-65d19258f37bec2de10cb85ce850868eea18251b.tar.bz2
ice-65d19258f37bec2de10cb85ce850868eea18251b.tar.xz
ice-65d19258f37bec2de10cb85ce850868eea18251b.zip
Got carried away when changing the tests to unbuffered I/O and changed more
than necessary. Changed back now :-)
Diffstat (limited to 'cpp/test/Ice/faultTolerance/TestI.cpp')
-rw-r--r--cpp/test/Ice/faultTolerance/TestI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/faultTolerance/TestI.cpp b/cpp/test/Ice/faultTolerance/TestI.cpp
index 1f439c7ed7e..12551b866d8 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