futex.2: Use known types

Type u32 is not exposed to the user.  Instead, refer to uint32_t,
which is defined in ISO/IEC 9899:1999.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Heinrich Schuchardt 2015-04-13 20:18:05 +02:00 committed by Michael Kerrisk
parent d725ab772e
commit c6dc40a2c9
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ futex \- fast user-space locking
.sp .sp
.BI "int futex(int *" uaddr ", int " futex_op ", int " val , .BI "int futex(int *" uaddr ", int " futex_op ", int " val ,
.BI " const struct timespec *" timeout , \ .BI " const struct timespec *" timeout , \
" \fR /* or: \fBu32 \fIval2\fP */ " \fR /* or: \fBuint32_t \fIval2\fP */
.BI " int *" uaddr2 ", int " val3 ); .BI " int *" uaddr2 ", int " val3 );
.fi .fi
@ -141,7 +141,7 @@ is determined by the operation.
For these operations, the kernel casts the For these operations, the kernel casts the
.I timeout .I timeout
value to value to
.IR u32 , .IR uint32_t ,
and in the remainder of this page, this argument is referred to as and in the remainder of this page, this argument is referred to as
.I val2 .I val2
when interpreted in this fashion. when interpreted in this fashion.