]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
man/man2const/FUTEX_REQUEUE.2const: Tweak after split
authorAlejandro Colomar <alx@kernel.org>
Wed, 28 May 2025 23:15:19 +0000 (01:15 +0200)
committerAlejandro Colomar <alx@kernel.org>
Fri, 30 May 2025 12:42:44 +0000 (14:42 +0200)
Signed-off-by: Alejandro Colomar <alx@kernel.org>
man/man2const/FUTEX_REQUEUE.2const

index 0df4c8b81e00c721f65a92d325af6df18225bdd7..04b48e1f1e06d8ac3ed758eb6f8fea34ef1aaff2 100644 (file)
@@ -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