blob: 1720825f36acfc98971ac8c9d589c9ad742b7da7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- fdbserver/fdbserver.actor.cpp.orig 2022-09-19 11:42:41 UTC
+++ fdbserver/fdbserver.actor.cpp
@@ -84,7 +84,11 @@
#if defined(__linux__) || defined(__FreeBSD__)
#include <execinfo.h>
#include <signal.h>
+#if defined(__linux__)
#include <sys/prctl.h>
+#elif defined(__FreeBSD__)
+#include <sys/procctl.h>
+#endif
#ifdef ALLOC_INSTRUMENTATION
#include <cxxabi.h>
#endif
@@ -2225,9 +2229,14 @@ int main(int argc, char* argv[]) {
f = result;
} else if (role == ServerRole::FlowProcess) {
TraceEvent(SevDebug, "StartingFlowProcess").detail("From", "fdbserver");
-#if defined(__linux__) || defined(__FreeBSD__)
+#if defined(__linux__)
prctl(PR_SET_PDEATHSIG, SIGTERM);
if (getppid() == 1) /* parent already died before prctl */
+ flushAndExit(FDB_EXIT_SUCCESS);
+#elif defined(__FreeBSD__)
+ const int sig = SIGTERM;
+ procctl(P_PID, 0, PROC_PDEATHSIG_CTL, (void*)&sig);
+ if (getppid() == 1) /* parent already died before procctl */
flushAndExit(FDB_EXIT_SUCCESS);
#endif
|