From fe227c7977f4562edda843fed9b65676df0bbb1a Mon Sep 17 00:00:00 2001 From: benthompson15 Date: Tue, 11 Feb 2020 17:29:06 -0600 Subject: [PATCH] Remove SIGKILL from list. --- storage-manager/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage-manager/src/main.cpp b/storage-manager/src/main.cpp index 6ce2a1db8..3d0108fe4 100644 --- a/storage-manager/src/main.cpp +++ b/storage-manager/src/main.cpp @@ -86,8 +86,8 @@ int main(int argc, char** argv) struct sigaction sa; memset(&sa, 0, sizeof(sa)); - std::vector shutdownSignals{ SIGALRM, SIGHUP, SIGINT, SIGKILL, - SIGPOLL, SIGPROF, SIGPWR, SIGTERM, SIGVTALRM}; + std::vector shutdownSignals{ SIGALRM, SIGHUP, SIGINT, SIGPOLL, + SIGPROF, SIGPWR, SIGTERM, SIGVTALRM}; std::vector coreSignals{SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGQUIT, SIGSEGV, SIGSYS, SIGTRAP,