llseek.2, lseek.2, readahead.2: Wording fix: use "open file description" rather than "open file"

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2016-01-26 09:42:25 +01:00
parent 162ce82786
commit 14a9ad4952
3 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ There is no glibc wrapper for this system call; see NOTES.
.SH DESCRIPTION
The
.BR _llseek ()
function repositions the offset of the open file associated
function repositions the offset of the open file description associated
with the file descriptor
.I fd
to

View File

@ -56,8 +56,8 @@ lseek \- reposition read/write file offset
.SH DESCRIPTION
The
.BR lseek ()
function repositions the offset of the open file associated with the
file descriptor
function repositions the offset of the open file description
associated with the file descriptor
.I fd
to the argument
.I offset

View File

@ -60,7 +60,7 @@ equal to
.IR "(offset+count)" .
.BR readahead ()
does not read beyond the end of the file.
The current file offset of the open file referred to by
The file offset of the open file description referred to by
.I fd
is left unchanged.
.SH RETURN VALUE