aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp
diff options
context:
space:
mode:
authorVladislav Grishenko <themiron@yandex-team.ru>2022-03-21 02:21:42 +0500
committerDamjan Marion <dmarion@me.com>2022-03-23 18:24:56 +0000
commit8486283cd5efb6b3c78428658eed685c5e8469d7 (patch)
treede8caf8d25d4890a8f8eeca34e45b7d5875b2729 /src/vpp
parent7f9256e31c13fdfb640eff9d7775bc50b4396543 (diff)
vlib: leave SIGCONT signal with its default handler
Systemd always sends SIGCONT after KillSignal, to ensure that even suspended tasks can be terminated cleanly. However, the default action of SIGCONT handler in VPP such as unix_signal_handler() is process termination with coredump, what is not really desired. So, leave it alike SIGSTOP with its default handler. Type: feature Signed-off-by: Vladislav Grishenko <themiron@yandex-team.ru> Change-Id: I54c06d21669ec3c709322d746db9e28448c31bb8
Diffstat (limited to 'src/vpp')
-rw-r--r--src/vpp/api/vpp_get_metrics.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vpp/api/vpp_get_metrics.c b/src/vpp/api/vpp_get_metrics.c
index 41d2393cc96..a3860ab56b0 100644
--- a/src/vpp/api/vpp_get_metrics.c
+++ b/src/vpp/api/vpp_get_metrics.c
@@ -77,6 +77,7 @@ setup_signal_handlers (void)
/* these signals take the default action */
case SIGABRT:
case SIGKILL:
+ case SIGCONT:
case SIGSTOP:
case SIGUSR1:
case SIGUSR2: