On Tue, Oct 19, 2010 at 03:59:43PM +0400, Dmitry Potapov wrote: > The solution is to disable SIGINT and SIGQUIT as it is normally done by > system(). Disabling these signals is done only when silent_exec_failure > is set, which means that the current process is used as a proxy to run > another command. I don't understand why we would only do it for silent_exec_failure. You claim that flag means that the current process is a proxy for another command, but: 1. Is that really the case, or do the two things just happen to coincide in the current codebase? 2. Why do we want to do it only for the proxy-command case? If I have a long-running external diff or merge helper, for example, what should happen on SIGINT? Should we exit with the child still potentially running, or should we actually be reaping the child properly? > + if (cmd->silent_exec_failure) { > + sigint = signal(SIGINT, SIG_IGN); > + sigquit = signal(SIGQUIT, SIG_IGN); > + } > cmd->pid = fork(); > if (!cmd->pid) { > + if (cmd->silent_exec_failure) { > + signal(SIGINT, sigint); > + signal(SIGQUIT, sigquit); > + } How does this interact with the sigchain code? If I do: start_command(...); sigchain_push(...); finish_command(...); we will overwrite the function pushed in the sigchain_push with a stale handler. I think you could just replace your signal() calls with: sigchain_push(SIGINT, SIG_IGN); ... sigchain_pop(SIGINT); but I wonder if ignoring is necessarily the right thing. Shouldn't we just reap the child and then run the signal handler that was there before us? That means in general that we will continue to die via SIGINT when we see SIGINT. With your patch, we will ignore it and (presumably) end up dying with a return code indicated that the child had an error. I think both of these things are not problems for executing dashed externals. But as above, I am not sure that we should be limiting this signal handling to those cases. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html