The maximum system file descriptor, ordinarily 2. System file descriptors are passed toexec()
ed processes, while higher file descriptors are not. Also, during anopen()
, system file descriptors are preserved even if theopen()
fails (ordinary file descriptors are closed before theopen()
is attempted). The close-on-exec status of a file descriptor will be decided according to the value of$^F
when the corresponding file, pipe, or socket was opened, not the time of theexec()
.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via theGitHub issue tracker oremail regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via thePerl issue tracker, themailing list, orIRC to report any issues with the contents or format of the documentation.