aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-06-26 20:42:36 +0000
committerMike Frysinger <vapier@gentoo.org>2006-06-26 20:42:36 +0000
commit42705abc2840b5472bf2c7846d83c75cfc695c1a (patch)
tree972d919d4fe3952d5bba9d9c0a73c6dde31d1810 /shell
parentef10d52745a72f524e36edc375a6a05d3365ede4 (diff)
downloadbusybox-42705abc2840b5472bf2c7846d83c75cfc695c1a.tar.gz
dont setpgrp() for now as it breaks system() and that is more important than ctrl+c handling of background processes
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)
if (resetsig) {
signal(SIGINT, SIG_DFL);
signal(SIGQUIT, SIG_DFL);
- } else {
- /* put non-interactive processes into a different process group.
- * we don't support jobs, but this is at least sane: see Bug 659 */
- bb_setpgrp;
}
if (t->type == TPAREN)