Prevent duplicate signals from makeparallel

As part of the soong_ui effort, we noticed that we'd sometimes see
multiple SIGINTs from a single ctrl-c from a user. ctrl-c sends a SIGINT
to the entire process group, so make, makeparallel, soong_ui, and all of
its children would get a signal. Since makeparallel was passing it along
to it's child, soong_ui would get two signals.

So instead, follow what Make does and only pass along SIGTERM. Assume
that all other signals went to the entire process group.

Bug: 35214134
Test: Send SIGINT to process group, check in makeparallel's child for
more than one signal received.
Change-Id: I5b2a77ad0fcebbaa5087439948e71bf3b541061a
This commit is contained in:
Dan Willemsen
2017-02-21 13:43:23 -08:00
parent 0aef0b59af
commit c6a900bee1

View File

@@ -357,8 +357,8 @@ int main(int argc, char* argv[]) {
static pid_t pid; static pid_t pid;
// Set up signal handlers to forward SIGHUP, SIGINT, SIGQUIT, SIGTERM, and // Set up signal handlers to forward SIGTERM to child
// SIGALRM to child // Assume that all other signals are sent to the entire process group
struct sigaction action = {}; struct sigaction action = {};
action.sa_flags = SA_SIGINFO | SA_RESTART, action.sa_flags = SA_SIGINFO | SA_RESTART,
action.sa_sigaction = [](int signal, siginfo_t*, void*) { action.sa_sigaction = [](int signal, siginfo_t*, void*) {
@@ -368,11 +368,7 @@ int main(int argc, char* argv[]) {
}; };
int ret = 0; int ret = 0;
if (!ret) ret = sigaction(SIGHUP, &action, NULL);
if (!ret) ret = sigaction(SIGINT, &action, NULL);
if (!ret) ret = sigaction(SIGQUIT, &action, NULL);
if (!ret) ret = sigaction(SIGTERM, &action, NULL); if (!ret) ret = sigaction(SIGTERM, &action, NULL);
if (!ret) ret = sigaction(SIGALRM, &action, NULL);
if (ret < 0) { if (ret < 0) {
error(errno, errno, "sigaction failed"); error(errno, errno, "sigaction failed");
} }