greatly improve freopen behavior
[musl] / src / unistd / dup3.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include <errno.h>
4 #include <fcntl.h>
5 #include "syscall.h"
6 #include "libc.h"
7
8 int __dup3(int old, int new, int flags)
9 {
10         int r;
11         if (old==new) return __syscall_ret(-EINVAL);
12         if (flags & O_CLOEXEC) {
13                 while ((r=__syscall(SYS_dup3, old, new, flags))==-EBUSY);
14                 if (r!=-ENOSYS) return __syscall_ret(r);
15         }
16         while ((r=__syscall(SYS_dup2, old, new))==-EBUSY);
17         if (flags & O_CLOEXEC) __syscall(SYS_fcntl, new, F_SETFD, FD_CLOEXEC);
18         return __syscall_ret(r);
19 }
20
21 weak_alias(__dup3, dup3);