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) */
int status; /* clock command/status */
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)
(read only) */
struct timeval time; /* current time (read only) */
(read-only) */
struct timeval time; /* current time (read-only) */
long tick; /* usecs between clock ticks */
};
.fi

View File

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

View File

@ -59,7 +59,7 @@ core dump already exists, but there is more than one hard link to that
file.
.IP *
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.
.IP *
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.
.SS "Hardware-boot"
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).
In PC we usually call this program the \fBBIOS\fR.