What do the dup() and dup2() system calls really do? How would I use them in practice?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by James McNellis, Matthew Flaschen, Mark Elliot, Jonathan Leffler, Yi Jiang Nov 13 '10 at 5:51
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Both make a new file descriptor corresponding to an existing open file description. Most properties between the old and new fd (like position) are shared; the only property I can think of that's not shared is the close-on-exec flag. The difference between |
|||
|