Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e1a385ab
Commit
e1a385ab
authored
Aug 31, 2005
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Explain what file descriptors are; this change has been sitting in my tree for a while
parent
ff9ca5e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
Doc/lib/libos.tex
Doc/lib/libos.tex
+9
-2
No files found.
Doc/lib/libos.tex
View file @
e1a385ab
...
...
@@ -427,8 +427,15 @@ functions have a different order.
\subsection
{
File Descriptor Operations
\label
{
os-fd-ops
}}
These functions operate on I/O streams referred to
using file descriptors.
These functions operate on I/O streams referenced using file
descriptors.
File descriptors are small integers corresponding to a file that has
been opened by the current process. For example, standard input is
usually file descriptor 0, standard output is 1, and standard error is
2. Further files opened by a process will then be assigned 3, 4, 5,
and so forth. The name ``file descriptor'' is slightly deceptive; on
{
\UNIX
}
platforms, sockets and pipes are also referenced by file descriptors.
\begin{funcdesc}
{
close
}{
fd
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment