ports/databases/foundationdb/files/patch-fdbserver_fdbserver.actor.cpp
Dave Cottlehuber fd34d28a01 databases/foundationdb: update to 7.1.25
- drop obsolete -devel variant
- pet port with portfmt and portclippy

Reported by:    portscout
Sponsored by:   SkunkWerks, GmbH
2022-11-17 01:29:06 +00:00

30 lines
1,012 B
C++

--- 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