diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:52:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:52:22 +0000 |
commit | 3d08cd331c1adcf0d917392f7e527b3f00511748 (patch) | |
tree | 312f0d1e1632f48862f044b8bb87e602dcffb5f9 /man3/pthread_yield.3 | |
parent | Adding debian version 6.7-2. (diff) | |
download | manpages-3d08cd331c1adcf0d917392f7e527b3f00511748.tar.xz manpages-3d08cd331c1adcf0d917392f7e527b3f00511748.zip |
Merging upstream version 6.8.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'man3/pthread_yield.3')
-rw-r--r-- | man3/pthread_yield.3 | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/man3/pthread_yield.3 b/man3/pthread_yield.3 deleted file mode 100644 index 34d2bad..0000000 --- a/man3/pthread_yield.3 +++ /dev/null @@ -1,78 +0,0 @@ -'\" t -.\" Copyright (c) 2009 Michael Kerrisk, <mtk.manpages@gmail.com> -.\" -.\" SPDX-License-Identifier: Linux-man-pages-copyleft -.\" -.TH pthread_yield 3 2023-10-31 "Linux man-pages 6.7" -.SH NAME -pthread_yield \- yield the processor -.SH LIBRARY -POSIX threads library -.RI ( libpthread ", " \-lpthread ) -.SH SYNOPSIS -.nf -.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" -.B #include <pthread.h> -.P -.B [[deprecated]] int pthread_yield(void); -.fi -.SH DESCRIPTION -.BR Note : -This function is deprecated; see below. -.P -.BR pthread_yield () -causes the calling thread to relinquish the CPU. -The thread is placed at the end of the run queue for its static -priority and another thread is scheduled to run. -For further details, see -.BR sched_yield (2) -.SH RETURN VALUE -On success, -.BR pthread_yield () -returns 0; -on error, it returns an error number. -.SH ERRORS -On Linux, this call always succeeds -(but portable and future-proof applications should nevertheless -handle a possible error return). -.SH ATTRIBUTES -For an explanation of the terms used in this section, see -.BR attributes (7). -.TS -allbox; -lbx lb lb -l l l. -Interface Attribute Value -T{ -.na -.nh -.BR pthread_yield () -T} Thread safety MT-Safe -.TE -.SH VERSIONS -On Linux, this function is implemented as a call to -.BR sched_yield (2). -.SH STANDARDS -None. -.SH HISTORY -.\" BSD, Tru64, AIX, and Irix. -Deprecated since glibc 2.34. -Use the standardized -.BR sched_yield (2) -instead. -.SH NOTES -.BR pthread_yield () -is intended for use with real-time scheduling policies (i.e., -.B SCHED_FIFO -or -.BR SCHED_RR ). -Use of -.BR pthread_yield () -with nondeterministic scheduling policies such as -.B SCHED_OTHER -is unspecified and very likely means your application design is broken. -.SH SEE ALSO -.BR sched_yield (2), -.\" FIXME . .BR pthread_cond_wait (3), -.BR pthreads (7), -.BR sched (7) |