aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2016-05-19 13:01:45 +0100
committerRon Yorston <rmy@pobox.com>2016-05-19 13:06:32 +0100
commit1f3a582db3ca7cd7f33d5ab6f2f6c46d68de689d (patch)
treeaf546007803966f5a0f0b5040b4bfa42c23027cd
parent407e311728de0abfe8d23393a278020db3211509 (diff)
downloadbusybox-w32-1f3a582db3ca7cd7f33d5ab6f2f6c46d68de689d.tar.gz
busybox-w32-1f3a582db3ca7cd7f33d5ab6f2f6c46d68de689d.tar.bz2
busybox-w32-1f3a582db3ca7cd7f33d5ab6f2f6c46d68de689d.zip
ash: enable wait builtin command
-rw-r--r--shell/ash.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 1c14f396c..750ca7b6d 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4507,9 +4507,6 @@ waitcmd(int argc UNUSED_PARAM, char **argv)
4507 int retval; 4507 int retval;
4508 struct job *jp; 4508 struct job *jp;
4509 4509
4510 if (ENABLE_PLATFORM_MINGW32)
4511 return 0;
4512
4513 if (pending_sig) 4510 if (pending_sig)
4514 raise_exception(EXSIG); 4511 raise_exception(EXSIG);
4515 4512
@@ -5168,7 +5165,6 @@ forkshell(struct job *jp, union node *n, int mode)
5168 int pid; 5165 int pid;
5169 5166
5170 TRACE(("forkshell(%%%d, %p, %d) called\n", jobno(jp), n, mode)); 5167 TRACE(("forkshell(%%%d, %p, %d) called\n", jobno(jp), n, mode));
5171
5172 pid = fork(); 5168 pid = fork();
5173 if (pid < 0) { 5169 if (pid < 0) {
5174 TRACE(("Fork failed, errno=%d", errno)); 5170 TRACE(("Fork failed, errno=%d", errno));