aboutsummaryrefslogtreecommitdiff
path: root/shell
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-04-20 19:14:36 +0200
commit46efbaa6f1cd2d9538b6338cee8b7541ddbddb40 (patch)
tree723bb21b337201a3e5d6be8c8194fed1a14747a5 /shell
parentc51f44045277fd3ab6f693d7485e7c259cf2d2ee (diff)
downloadbusybox-w32-46efbaa6f1cd2d9538b6338cee8b7541ddbddb40.tar.gz
busybox-w32-46efbaa6f1cd2d9538b6338cee8b7541ddbddb40.tar.bz2
busybox-w32-46efbaa6f1cd2d9538b6338cee8b7541ddbddb40.zip
win32: ash: waitcmd(): return early, not supported
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Diffstat (limited to 'shell')
-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