O nás     Inzerce     KontaktSpolehlivé informace o IT již od roku 2011
Hledat
Nepřehlédněte: Usnadní vám práci: Pozoruhodné IT produkty pro rok 2024
Správa dokumentů
Digitální transformace
Informační systémy
Hlavní rubriky: Informační systémy, Mobilní technologie, Datová centra, Sítě, IT bezpečnost, Software, Hardware, Zkušenosti a názory, Speciály

Pozoruhodné IT produkty 2024
E-knihy o IT zdarma
Manuál Linux
[Linux manuál]

dup, dup2: duplikovat popisovač souboru

Originální popis anglicky: dup, dup2 - duplicate a file descriptor

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#include <unistd.h>
 
int dup(int oldfd); int dup2(int oldfd, int newfd);

POPIS / INSTRUKCE

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.

NÁVRATOVÁ HODNOTA

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

CHYBY / ERRORY

EBADF
oldfd isn't an open file descriptor, or newfd is out of the allowed range for file descriptors.
EBUSY
(Linux only) This may be returned by dup2 during a race condition with open() and dup().
EINTR
The dup2 call was interrupted by a signal.
EMFILE
The process already has the maximum number of file descriptors open and tried to open a new one.

WARNING

The error returned by dup2 is different from that returned by fcntl(..., F_DUPFD, ...) when newfd is out of range. On some systems dup2 also sometimes returns EINVAL like F_DUPFD.

BUGS

If newfd was open, any errors that would have been reported at close() time, are lost. A careful programmer will not use dup2 without closing newfd first.

ODPOVÍDAJÍCÍ

SVr4, SVID, POSIX, X/OPEN, BSD 4.3. SVr4 documents additional EINTR and ENOLINK error conditions. POSIX.1 adds EINTR. The EBUSY return is Linux-specific.

SOUVISEJÍCÍ

close(2), fcntl(2), open(2)
1994-08-21 Linux 1.1.46
©2011-2024 BusinessIT.cz, ISSN 1805-0522 | Názvy použité v textech mohou být ochrannými známkami příslušných vlastníků.
Provozovatel: Bispiral, s.r.o., kontakt: BusinessIT(at)Bispiral.com | Inzerce: Best Online Media, s.r.o., zuzana@online-media.cz
O vydavateli | Pravidla webu BusinessIT.cz a ochrana soukromí | Používáme účetní program Money S3 | pg(8787)