Staging
v0.5.1
https://github.com/python/cpython
Revision 9afdabffa9c54d3831182a73321b9edbde195736 authored by Guido van Rossum on 30 July 1996, 20:16:21 UTC, committed by Guido van Rossum on 30 July 1996, 20:16:21 UTC
1 parent 74faed2
Raw File
Tip revision: 9afdabffa9c54d3831182a73321b9edbde195736 authored by Guido van Rossum on 30 July 1996, 20:16:21 UTC
Add missing close parenthesis.
Tip revision: 9afdabf
libsomeos.tex
\chapter{Optional Operating System Services}

The modules described in this chapter provide interfaces to operating
system features that are available on selected operating systems only.
The interfaces are generally modelled after the \UNIX{} or C
interfaces but they are available on some other systems as well
(e.g. Windows or NT).  Here's an overview:

\begin{description}

\item[signal]
--- Set handlers for asynchronous events.

\item[socket]
--- Low-level networking interface.

\item[select]
--- Wait for I/O completion on multiple streams.

\item[thread]
--- Create multiple threads of control within one namespace.

\end{description}
back to top