projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af07b7c
)
hush: fix wrong comment
author
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 7 Apr 2009 13:29:27 +0000
(13:29 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 7 Apr 2009 13:29:27 +0000
(13:29 -0000)
shell/hush.c
patch
|
blob
|
history
diff --git
a/shell/hush.c
b/shell/hush.c
index d82be3d70aaff84e3333f014c0a91f47cee0b06e..e636f5829c35ca428e4f028dca0d15c92ca02f0d 100644
(file)
--- a/
shell/hush.c
+++ b/
shell/hush.c
@@
-914,9
+914,10
@@
static int check_and_run_traps(int sig)
}
#if ENABLE_HUSH_JOB
+
/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
-/* After [v]fork, in parent:
do not
restore tty pgrp on xfunc death */
+/* After [v]fork, in parent: restore tty pgrp on xfunc death */
#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
/* Restores tty foreground process group, and exits.