summaryrefslogtreecommitdiffstats
path: root/staging_vespalib
diff options
context:
space:
mode:
Diffstat (limited to 'staging_vespalib')
-rw-r--r--staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp b/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
index fbaa5581173..04a811494c9 100644
--- a/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
+++ b/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
@@ -3,6 +3,7 @@
#include <vespa/vespalib/util/shutdownguard.h>
#include <unistd.h>
#include <sys/wait.h>
+#include <cstdlib>
using namespace vespalib;
@@ -23,7 +24,7 @@ Test::Main()
for (int i = 0; i < 1000; ++i) {
std::this_thread::sleep_for(20ms);
}
- exit(0);
+ std::_Exit(0);
}
for (int i = 0; i < 1000; ++i) {
std::this_thread::sleep_for(20ms);