标签: unix fcntl
int fcntl (int fd ,F_DUPFD,... / int arg /)。
unix编程中的fcntl函数使用F_DUPFD文件描述符标志.f_DUPFD清除下一个最低可用文件描述符的FD_CLOEXEC文件描述符。此新文件描述符与 fd 的文件表条目相同。
我需要的是实现int fcntl (int fd ,F_DUPFD,... / int arg /的实际例子)并给出适当的解释。