This is an automated email from the ASF dual-hosted git repository.
cmcfarlen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 5a8ce3e002 traffic_crashlog: use SIGCONT for parent death (#11614)
5a8ce3e002 is described below
commit 5a8ce3e00261f91f66ea1d6a9aa7145fa207f85d
Author: Chris McFarlen <[email protected]>
AuthorDate: Thu Jul 25 14:23:20 2024 -0500
traffic_crashlog: use SIGCONT for parent death (#11614)
Co-authored-by: Chris McFarlen <[email protected]>
---
src/traffic_crashlog/traffic_crashlog.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/traffic_crashlog/traffic_crashlog.cc
b/src/traffic_crashlog/traffic_crashlog.cc
index 07b8067b88..42b411ef04 100644
--- a/src/traffic_crashlog/traffic_crashlog.cc
+++ b/src/traffic_crashlog/traffic_crashlog.cc
@@ -156,7 +156,7 @@ main(int /* argc ATS_UNUSED */, const char **argv)
process_args(&version, argument_descriptions,
countof(argument_descriptions), argv);
if (wait_mode) {
- EnableDeathSignal(SIGKILL);
+ EnableDeathSignal(SIGCONT);
kill(getpid(), SIGSTOP);
}