diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vat/main.c | 1 | ||||
-rw-r--r-- | src/vlib/unix/main.c | 1 | ||||
-rw-r--r-- | src/vpp/api/vpp_get_metrics.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/vat/main.c b/src/vat/main.c index d052493495d..1640c5ded6a 100644 --- a/src/vat/main.c +++ b/src/vat/main.c @@ -267,6 +267,7 @@ setup_signal_handlers (void) /* these signals take the default action */ case SIGABRT: case SIGKILL: + case SIGCONT: case SIGSTOP: case SIGUSR1: case SIGUSR2: diff --git a/src/vlib/unix/main.c b/src/vlib/unix/main.c index 69959fd9137..8e06bfa334b 100644 --- a/src/vlib/unix/main.c +++ b/src/vlib/unix/main.c @@ -210,6 +210,7 @@ setup_signal_handlers (unix_main_t * um) { /* these signals take the default action */ case SIGKILL: + case SIGCONT: case SIGSTOP: case SIGUSR1: case SIGUSR2: 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: |