aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-26 20:42:36 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-26 20:42:36 +0000
commit7c9d66cef366a9442cc99fb5b576e861d724352a (patch)
tree972d919d4fe3952d5bba9d9c0a73c6dde31d1810 /shell
parent8f10d19d6a9ff193c18167b7b3019437a2334fde (diff)
downloadbusybox-w32-7c9d66cef366a9442cc99fb5b576e861d724352a.tar.gz
busybox-w32-7c9d66cef366a9442cc99fb5b576e861d724352a.tar.bz2
busybox-w32-7c9d66cef366a9442cc99fb5b576e861d724352a.zip
dont setpgrp() for now as it breaks system() and that is more important than ctrl+c handling of background processes
git-svn-id: svn://busybox.net/trunk/busybox@15519 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/msh.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/shell/msh.c b/shell/msh.c
index a2d3864a3..5a9f2c707 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -2970,10 +2970,6 @@ forkexec(REGISTER struct op *t, int *pin, int *pout, int act, char **wp)
2970 if (resetsig) { 2970 if (resetsig) {
2971 signal(SIGINT, SIG_DFL); 2971 signal(SIGINT, SIG_DFL);
2972 signal(SIGQUIT, SIG_DFL); 2972 signal(SIGQUIT, SIG_DFL);
2973 } else {
2974 /* put non-interactive processes into a different process group.
2975 * we don't support jobs, but this is at least sane: see Bug 659 */
2976 bb_setpgrp;
2977 } 2973 }
2978 2974
2979 if (t->type == TPAREN) 2975 if (t->type == TPAREN)