This commit is contained in:
Michael Kerrisk 2008-03-19 11:52:55 +00:00
parent 415d4dd0eb
commit 972a8ec74e
4 changed files with 7 additions and 7 deletions

View File

@ -55,10 +55,10 @@ struct timex {
long esterror; /* estimated error (usec) */ long esterror; /* estimated error (usec) */
int status; /* clock command/status */ int status; /* clock command/status */
long constant; /* pll time constant */ long constant; /* pll time constant */
long precision; /* clock precision (usec) (read only) */ long precision; /* clock precision (usec) (read-only) */
long tolerance; /* clock frequency tolerance (ppm) long tolerance; /* clock frequency tolerance (ppm)
(read only) */ (read-only) */
struct timeval time; /* current time (read only) */ struct timeval time; /* current time (read-only) */
long tick; /* usecs between clock ticks */ long tick; /* usecs between clock ticks */
}; };
.fi .fi

View File

@ -733,13 +733,13 @@ takes a
.IR "struct floppy raw_cmd *" . .IR "struct floppy raw_cmd *" .
If If
.I flags & FD_RAW_WRITE .I flags & FD_RAW_WRITE
is non-zero, then is nonzero, then
.I data .I data
points to an input buffer of length points to an input buffer of length
.IR length . .IR length .
If If
.I flags & FD_RAW_READ .I flags & FD_RAW_READ
is non-zero, then is nonzero, then
.I data .I data
points to an output buffer of length points to an output buffer of length
.IR length . .IR length .

View File

@ -59,7 +59,7 @@ core dump already exists, but there is more than one hard link to that
file. file.
.IP * .IP *
The file system where the core dump file would be created is full; The file system where the core dump file would be created is full;
or has run out of inodes; or is mounted read only; or has run out of inodes; or is mounted read-only;
or the user has reached their quota for the file system. or the user has reached their quota for the file system.
.IP * .IP *
The directory in which the core dump file is to be created does The directory in which the core dump file is to be created does

View File

@ -22,7 +22,7 @@ but can be roughly divided to the following steps:
We will describe each of these in more detail below. We will describe each of these in more detail below.
.SS "Hardware-boot" .SS "Hardware-boot"
After power-on or hard reset, control is given After power-on or hard reset, control is given
to a program stored on read only memory (normally to a program stored on read-only memory (normally
PROM). PROM).
In PC we usually call this program the \fBBIOS\fR. In PC we usually call this program the \fBBIOS\fR.