diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 00:38:41 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 19:46:38 +1000 |
commit | 6ce8ae13d4556a2f966ad58b58309fba4ff97fe4 (patch) | |
tree | 498a6126d516c8007eafb4b16fe0009388cf4080 | |
parent | 18f4920aa10859a30104efb68978f5d72c8f7c47 (diff) | |
download | busybox-w32-6ce8ae13d4556a2f966ad58b58309fba4ff97fe4.tar.gz busybox-w32-6ce8ae13d4556a2f966ad58b58309fba4ff97fe4.tar.bz2 busybox-w32-6ce8ae13d4556a2f966ad58b58309fba4ff97fe4.zip |
win32: ash: copyfd(): work around fcntl(F_DUPFD)
-rw-r--r-- | shell/ash.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 007d501f9..3380e573e 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -5126,6 +5126,18 @@ copyfd(int from, int to) | |||
5126 | /*if (from != to)*/ | 5126 | /*if (from != to)*/ |
5127 | newfd = dup2(from, to); | 5127 | newfd = dup2(from, to); |
5128 | } else { | 5128 | } else { |
5129 | if (ENABLE_PLATFORM_MINGW32) { | ||
5130 | char* fds = ckmalloc(to); | ||
5131 | int i,fd; | ||
5132 | memset(fds,0,to); | ||
5133 | while ((fd = dup(from)) < to && fd >= 0) | ||
5134 | fds[fd] = 1; | ||
5135 | for (i = 0;i < to;i ++) | ||
5136 | if (fds[i]) | ||
5137 | close(i); | ||
5138 | free(fds); | ||
5139 | return fd; | ||
5140 | } | ||
5129 | newfd = fcntl(from, F_DUPFD, to); | 5141 | newfd = fcntl(from, F_DUPFD, to); |
5130 | } | 5142 | } |
5131 | if (newfd < 0) { | 5143 | if (newfd < 0) { |