aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 00:45:01 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:43 +0200
commit0d7c618c2f29543beed3f9c9b8138d6de9b478ff (patch)
tree2c7b28df0396c9f9c4e02aebfb93262116371987 /shell
parentf12b36df0561b8a2eeba2fab4a7bcd15093b2c92 (diff)
downloadbusybox-w32-0d7c618c2f29543beed3f9c9b8138d6de9b478ff.tar.gz
busybox-w32-0d7c618c2f29543beed3f9c9b8138d6de9b478ff.tar.bz2
busybox-w32-0d7c618c2f29543beed3f9c9b8138d6de9b478ff.zip
win32: ash: FIXME
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 40b4c421d..0ee72dcd3 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4818,7 +4818,7 @@ static void
4818forkparent(struct job *jp, union node *n, int mode, pid_t pid) 4818forkparent(struct job *jp, union node *n, int mode, pid_t pid)
4819{ 4819{
4820 TRACE(("In parent shell: child = %d\n", pid)); 4820 TRACE(("In parent shell: child = %d\n", pid));
4821 if (!jp) { 4821 if (!jp && !ENABLE_PLATFORM_MINGW32) { /* FIXME not quite understand this */
4822 while (jobless && dowait(DOWAIT_NONBLOCK, NULL) > 0) 4822 while (jobless && dowait(DOWAIT_NONBLOCK, NULL) > 0)
4823 continue; 4823 continue;
4824 jobless++; 4824 jobless++;