aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2025-05-29 01:15:19 +0200
committerAlejandro Colomar <alx@kernel.org>2025-05-30 14:42:44 +0200
commitb270cc2efeadff786abdda19f5630aef7605cdf6 (patch)
tree92188f99ad836d5ebaf6bfcab084f0586961d784
parent178e3024de7e6361c1c9de896de0dbf5362e6011 (diff)
downloadman-pages-b270cc2efeadff786abdda19f5630aef7605cdf6.tar.gz
man/man2const/FUTEX_REQUEUE.2const: Tweak after split
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man/man2const/FUTEX_REQUEUE.2const13
1 files changed, 5 insertions, 8 deletions
diff --git a/man/man2const/FUTEX_REQUEUE.2const b/man/man2const/FUTEX_REQUEUE.2const
index 0df4c8b81e..04b48e1f1e 100644
--- a/man/man2const/FUTEX_REQUEUE.2const
+++ b/man/man2const/FUTEX_REQUEUE.2const
@@ -20,12 +20,9 @@ Standard C library
.BI " uint32_t " val ", uint32_t " val2 ", uint32_t *" uaddr2 );
.fi
.SH DESCRIPTION
-.TP
-.BR FUTEX_REQUEUE " (since Linux 2.6.0)"
This operation performs the same task as
-.B FUTEX_CMP_REQUEUE
-(see below), except that no check is made using the value in
-.IR val3 .
+.BR FUTEX_CMP_REQUEUE (2const),
+except that the futex word isn't compared.
.\"
.SH RETURN VALUE
On error,
@@ -36,7 +33,7 @@ is set to indicate the error.
.P
On success,
.B FUTEX_REQUEUE
-Returns the number of waiters that were woken up.
+returns the number of waiters that were woken up.
.SH ERRORS
See
.BR futex (2).
@@ -54,9 +51,9 @@ the address is not four-byte-aligned.
The kernel detected an inconsistency between the user-space state at
.I uaddr
and the kernel state\[em]that is, it detected a waiter which waits in
-.B FUTEX_LOCK_PI
+.BR FUTEX_LOCK_PI (2const)
or
-.B FUTEX_LOCK_PI2
+.BR FUTEX_LOCK_PI2 (2const)
on
.IR uaddr .
.SH STANDARDS