Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-06-03 16:37:30 +0400
committerMike Frysinger <vapier@gentoo.org>2009-07-22 13:19:15 +0400
commit6a98f95373d60d48001299797f52b1f19c7ffecd (patch)
treead957483bc617c93fef9fbb0a43170f118bfe115
parent078d55028e4f4e9e4ba9216580a37778c40eca5c (diff)
hush: fix a case when backgrounded cmd makes shell hang
Signed-off-by: Bayram Kurumahmut <kbayram@ubicom.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--shell/hush.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 386307720..835159066 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -3398,6 +3398,8 @@ static int checkjobs(struct pipe* fg_pipe)
#endif
return rcode;
}
+ if (!fg_pipe->alive_cmds)
+ return rcode;
}
/* There are still running processes in the fg pipe */
goto wait_more; /* do waitpid again */