1995-03-28 13:35:14 +00:00
|
|
|
\chapter{Generic Operating System Services}
|
1998-02-18 15:22:08 +00:00
|
|
|
\label{allos}
|
1995-03-28 13:35:14 +00: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 15:22:08 +00:00
|
|
|
after the \UNIX{} or \C{} interfaces but they are available on most
|
|
|
|
other systems as well. Here's an overview:
|
1995-03-28 13:35:14 +00: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 22:04:31 +00:00
|
|
|
\item[errno]
|
|
|
|
--- Standard errno system symbols.
|
|
|
|
|
1997-03-25 22:07:53 +00:00
|
|
|
\item[glob]
|
1998-01-13 19:00:33 +00:00
|
|
|
--- \UNIX{} shell style pathname pattern expansion.
|
1997-03-25 22:07:53 +00:00
|
|
|
|
1997-04-27 21:25:52 +00:00
|
|
|
\item[fnmatch]
|
1998-01-13 19:00:33 +00:00
|
|
|
--- \UNIX{} shell style pathname pattern matching.
|
1997-04-27 21:25:52 +00:00
|
|
|
|
1997-11-20 21:04:27 +00:00
|
|
|
\item[locale]
|
|
|
|
--- Internationalization services.
|
|
|
|
|
1995-03-28 13:35:14 +00:00
|
|
|
\end{description}
|