Commit f3daf133 authored by Andrii Grynenko's avatar Andrii Grynenko Committed by Facebook GitHub Bot

Enable DFATAL on use-after-fork by default

Reviewed By: yfeldblum

Differential Revision: D25689803

fbshipit-source-id: 0d5f6093d814c58e2d90f9042b7bad65ff8d8ade
parent 8cf67ca0
...@@ -571,7 +571,7 @@ class SingletonVault { ...@@ -571,7 +571,7 @@ class SingletonVault {
std::atomic<bool> shutdownTimerStarted_{false}; std::atomic<bool> shutdownTimerStarted_{false};
std::chrono::milliseconds shutdownTimeout_{std::chrono::minutes{5}}; std::chrono::milliseconds shutdownTimeout_{std::chrono::minutes{5}};
Synchronized<std::vector<std::string>> shutdownLog_; Synchronized<std::vector<std::string>> shutdownLog_;
bool failOnUseAfterFork_{false}; bool failOnUseAfterFork_{true};
}; };
// This is the wrapper class that most users actually interact with. // This is the wrapper class that most users actually interact with.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment