1995-03-28 09:35:14 -04:00
|
|
|
\chapter{Generic Operating System Services}
|
1998-02-18 11:22:08 -04:00
|
|
|
\label{allos}
|
1995-03-28 09:35:14 -04:00
|
|
|
|
|
|
|
The modules described in this chapter provide interfaces to operating
|
|
|
|
system features that are available on (almost) all operating systems,
|
|
|
|
such as files and a clock. The interfaces are generally modelled
|
1998-02-18 11:22:08 -04:00
|
|
|
after the \UNIX{} or \C{} interfaces but they are available on most
|
|
|
|
other systems as well. Here's an overview:
|
1995-03-28 09:35:14 -04:00
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[os]
|
|
|
|
--- Miscellaneous OS interfaces.
|
|
|
|
|
|
|
|
\item[time]
|
|
|
|
--- Time access and conversions.
|
|
|
|
|
|
|
|
\item[getopt]
|
|
|
|
--- Parser for command line options.
|
|
|
|
|
|
|
|
\item[tempfile]
|
|
|
|
--- Generate temporary file names.
|
|
|
|
|
1996-12-13 18:04:31 -04:00
|
|
|
\item[errno]
|
|
|
|
--- Standard errno system symbols.
|
|
|
|
|
1997-03-25 18:07:53 -04:00
|
|
|
\item[glob]
|
1998-01-13 15:00:33 -04:00
|
|
|
--- \UNIX{} shell style pathname pattern expansion.
|
1997-03-25 18:07:53 -04:00
|
|
|
|
1997-04-27 18:25:52 -03:00
|
|
|
\item[fnmatch]
|
1998-01-13 15:00:33 -04:00
|
|
|
--- \UNIX{} shell style pathname pattern matching.
|
1997-04-27 18:25:52 -03:00
|
|
|
|
1997-11-20 17:04:27 -04:00
|
|
|
\item[locale]
|
|
|
|
--- Internationalization services.
|
|
|
|
|
1995-03-28 09:35:14 -04:00
|
|
|
\end{description}
|