首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >dup2 / dup -为什么我需要复制文件描述符?

dup2 / dup -为什么我需要复制文件描述符?
EN

Stack Overflow用户
提问于 2012-07-25 00:24:13
回答 2查看 54.2K关注 0票数 92

我正在尝试理解dup2dup的用法。

从手册页:

代码语言:javascript
复制
DESCRIPTION

dup and dup2 create a copy of the file descriptor oldfd.
After successful return of dup or dup2, the old and new descriptors may
be used interchangeably. They share locks, file position pointers and
flags; for example, if the file position is modified by using lseek on
one of the descriptors, the position is also changed for the other.

The two descriptors do not share the close-on-exec flag, however.

dup uses the lowest-numbered unused descriptor for the new descriptor.

dup2 makes newfd be the copy of oldfd, closing newfd first if necessary.  

RETURN VALUE

dup and dup2 return the new descriptor, or -1 if an error occurred 
(in which case, errno is set appropriately).  

我为什么需要那个系统调用?复制文件描述符的用途是什么?

如果我有文件描述符,我为什么要复制它呢?

如果您能解释一下,并给我一个需要dup2 / dup的例子,我将不胜感激。

谢谢

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/11635219

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档