diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 00:45:01 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 11:04:21 +1000 |
commit | a7b648d26f7ace9c025e5f4ae5060d83d69080ce (patch) | |
tree | 901ff6d6a3da27f3c7abf1c3c1a0506bd006c629 | |
parent | fa6f44ea7205416837bc72bb9948ba376c2af7c5 (diff) | |
download | busybox-w32-a7b648d26f7ace9c025e5f4ae5060d83d69080ce.tar.gz busybox-w32-a7b648d26f7ace9c025e5f4ae5060d83d69080ce.tar.bz2 busybox-w32-a7b648d26f7ace9c025e5f4ae5060d83d69080ce.zip |
win32: ash: FIXME
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 31ad46aa7..181357c1c 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -4818,7 +4818,7 @@ static void | |||
4818 | forkparent(struct job *jp, union node *n, int mode, pid_t pid) | 4818 | forkparent(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++; |