fcntl.2: Correct argument type for read-write hints

Reported-by: Florian Weimer <fweimer@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-08-28 23:12:48 +02:00
parent dfea9e6262
commit d341ed5693
1 changed files with 4 additions and 4 deletions

View File

@ -1516,22 +1516,22 @@ in arbitrary ways, so long as the hints are used consistently.
The following operations can be applied to the file descriptor,
.IR fd :
.TP
.BR F_GET_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)"
.BR F_GET_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)"
Returns the value of the read/write hint associated with the underlying inode
referred to by
.IR fd .
.TP
.BR F_SET_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)"
.BR F_SET_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)"
Sets the read/write hint value associated with the
underlying inode referred to by
.IR fd .
.TP
.BR F_GET_FILE_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)"
.BR F_GET_FILE_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)"
Returns the value of the read/write hint associated with
the open file description referred to by
.IR fd .
.TP
.BR F_SET_FILE_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)"
.BR F_SET_FILE_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)"
Sets the read/write hint value associated with the open file description
referred to by
.IR fd .