Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a bug where the shutdown handler could be called again #8243

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/remote/server/os/posix/inet_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ static void signal_handler(int)
++INET_SERVER_start;
}

static void shutdown_handler(int)
static void shutdown_handler(int shutdown_signal_code)
{
/**************************************
*
Expand All @@ -655,11 +655,13 @@ static void shutdown_handler(int)
**************************************
*
* Functional description
* Forward sigterm signal to all child processes.
* Forward shutdown signal to all child processes.
*
**************************************/

kill(-1 * getpid(), SIGTERM);
signal(shutdown_signal_code, SIG_IGN);

kill(-1 * getpid(), shutdown_signal_code);

exit(FINI_OK);
}
Expand Down
Loading