summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2021-10-25 21:31:30 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-09-05 03:01:30 +0200
commitece9db52e93e334957db34a90dbdf51bc058d22b (patch)
tree4a89504e7e451fbd3d4bfb319909acda7573db36
parent8ae107aaaed29032cae3c7a3ff186f2803784409 (diff)
pthread_yield.3: SYNOPSIS: Mark as [[deprecated]]
sched_yield(3) is identical and is in POSIX. See glibc commit c2fd60a5861efef48252f5cc7efc70e1d8a0da9a. Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
-rw-r--r--man3/pthread_yield.32
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/pthread_yield.3 b/man3/pthread_yield.3
index e4dcf3cc6..44cf0f938 100644
--- a/man3/pthread_yield.3
+++ b/man3/pthread_yield.3
@@ -13,7 +13,7 @@ POSIX threads library
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <pthread.h>
.PP
-.B int pthread_yield(void);
+.B [[deprecated]] int pthread_yield(void);
.fi
.SH DESCRIPTION
.BR Note :