summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-08-06 12:14:59 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-08-06 12:14:59 +0200
commitabb934f91cc30700f3f38ea6dba2fe3bb75dd036 (patch)
treef178e146ad978c5e3f9e6d980f0954725255716b /vespalib
parentf8efaab3d1c8116afc1dc2b3cdf65248ede5c58e (diff)
Use std::_Exit instead of std::quick_exit.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/net/crypto_engine.cpp2
-rw-r--r--vespalib/src/vespa/vespalib/util/exceptions.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/net/crypto_engine.cpp b/vespalib/src/vespa/vespalib/net/crypto_engine.cpp
index ddc2ff14498..a52d4eeb690 100644
--- a/vespalib/src/vespa/vespalib/net/crypto_engine.cpp
+++ b/vespalib/src/vespa/vespalib/net/crypto_engine.cpp
@@ -234,7 +234,7 @@ CryptoEngine::SP try_create_default_crypto_engine() {
return create_default_crypto_engine();
} catch (net::tls::CryptoException &e) {
LOG(error, "failed to create default crypto engine: %s", e.what());
- std::quick_exit(78);
+ std::_Exit(78);
}
}
diff --git a/vespalib/src/vespa/vespalib/util/exceptions.cpp b/vespalib/src/vespa/vespalib/util/exceptions.cpp
index cdfa91c25ac..64ce947b5c0 100644
--- a/vespalib/src/vespa/vespalib/util/exceptions.cpp
+++ b/vespalib/src/vespa/vespalib/util/exceptions.cpp
@@ -33,7 +33,7 @@ vespalib::string _G_what;
void silent_terminate() {
std::lock_guard<std::mutex> guard(_G_silence_mutex);
LOG(fatal, "Will exit with code 66 due to: %s", _G_what.c_str());
- std::quick_exit(66);
+ std::_Exit(66);
}
}