aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 00:37:05 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-10 19:46:33 +1000
commit1e105b8ae592274427039f07b6cbb864770cd660 (patch)
treeda21410b19a649179be8aa5844a5702e233fc59c
parentc571730238486ed5a55a162a9eb0de7c38929757 (diff)
downloadbusybox-w32-1e105b8ae592274427039f07b6cbb864770cd660.tar.gz
busybox-w32-1e105b8ae592274427039f07b6cbb864770cd660.tar.bz2
busybox-w32-1e105b8ae592274427039f07b6cbb864770cd660.zip
win32: ash: waitcmd(): return early, not supported
-rw-r--r--shell/ash.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index d6e44633a..f2f50c0e6 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4054,6 +4054,9 @@ waitcmd(int argc UNUSED_PARAM, char **argv)
4054 int retval; 4054 int retval;
4055 struct job *jp; 4055 struct job *jp;
4056 4056
4057 if (ENABLE_PLATFORM_MINGW32)
4058 return 0;
4059
4057 if (pending_sig) 4060 if (pending_sig)
4058 raise_exception(EXSIG); 4061 raise_exception(EXSIG);
4059 4062