1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-21 13:40:58 +03:00

Remove SIGKILL from list.

This commit is contained in:
benthompson15
2020-02-11 17:29:06 -06:00
parent c4d8d3d87d
commit fe227c7977

View File

@@ -86,8 +86,8 @@ int main(int argc, char** argv)
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
std::vector<int> shutdownSignals{ SIGALRM, SIGHUP, SIGINT, SIGKILL,
SIGPOLL, SIGPROF, SIGPWR, SIGTERM, SIGVTALRM};
std::vector<int> shutdownSignals{ SIGALRM, SIGHUP, SIGINT, SIGPOLL,
SIGPROF, SIGPWR, SIGTERM, SIGVTALRM};
std::vector<int> coreSignals{SIGABRT, SIGBUS, SIGFPE, SIGILL,
SIGQUIT, SIGSEGV, SIGSYS, SIGTRAP,