|
 Definitions for file descriptor: The Free On-line Dictionary of Computing (27 SEP 03)
: file descriptor
An integer that identifies an
open file within a process. This number is obtained as a
result of opening a file. Operations which read, write, or
close a file would take the file descriptor as an input
parameter.
In many operating system implementations, file descriptors
are small integers which index a table of open files. In
Unix, file descriptors 0, 1 and 2 correspond to the
standard input, standard output and standard error files
respectively.
See file descriptor leak.
(1998-02-06)
Related SitesSee also In computer programming, a file descriptor is an abstract indicator for accessing a file. The term is generally used in POSIX operating systems. In Microsoft Windows terminology and in...
Ports and File Descriptors - Guile Reference Manual Each open file port has an associated operating system file descriptor. ... A file descriptor can be extracted from a port and a new port can be created from a file descriptor. ...
Solaris OS Solutions to 32-Bit stdio's 256 File-Descriptors ... This article explains in detail the runtime and programming solutions that were introduced under the extended 'FILE' facility in the Solaris OS. The discussion is ...
|