Я намагаюся зрозуміти використання dup2
та dup
.
Зі сторінки користувача:
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
потрібно.
Дякую
dup
абоdup2
? Вам потрібно зателефонувати,pipe(2)
а потім мати один із дескрипторів файлівdup
-ed до напр.STDIN_FILENO