Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What do the dup() and dup2() system calls really do? How would I use them in practice?

share|improve this question
What part don't you understand after reading the man pages and searching? – Matthew Flaschen Nov 13 '10 at 5:34
i was unable to understand how to use in programming and where to use – user484457 Nov 13 '10 at 5:35
3  

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.

1 Answer

up vote 1 down vote accepted

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 dup and dup2 is that dup assigns the lowest available file descriptor number, while dup2 lets you choose the file descriptor number that will be assigned and atomically closes and replaces it if it's already taken.

share|improve this answer
Also note that fcntl with the F_DUPFD command behaves similarly to dup2, but does not clobber an existing fd, so it can safely be used in threaded programs when trying to create a particular fd number that's not already taken. – R.. Jan 7 '12 at 4:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.