Searched refs:F_DUPFD_CLOEXEC (Results 1 – 2 of 2) sorted by relevance
/busybox-1.35.0/shell/ |
D | ash.c | 288 #ifndef F_DUPFD_CLOEXEC 289 # define F_DUPFD_CLOEXEC F_DUPFD macro 4092 fd = fcntl(fd, F_DUPFD_CLOEXEC, 10); in setjobctl() 4097 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ in setjobctl() 5606 newfd = fcntl(from, F_DUPFD_CLOEXEC, 10); in savefd() 5612 if (F_DUPFD_CLOEXEC == F_DUPFD) in savefd() 5635 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); in dup_CLOEXEC() 5637 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ in dup_CLOEXEC() 5652 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); in xdup_CLOEXEC_and_close() 5663 if (F_DUPFD_CLOEXEC == F_DUPFD) in xdup_CLOEXEC_and_close()
|
D | hush.c | 372 #ifndef F_DUPFD_CLOEXEC 373 # define F_DUPFD_CLOEXEC F_DUPFD macro 1571 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); in dup_CLOEXEC() 1573 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ in dup_CLOEXEC() 1588 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); in xdup_CLOEXEC_and_close() 1599 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ in xdup_CLOEXEC_and_close()
|