diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:41:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:41:07 +0000 |
commit | 3af6d22bb3850ab2bac67287e3a3d3b0e32868e5 (patch) | |
tree | 3ee7a3ec64525911fa865bb984c86d997d855527 /man2/sched_yield.2 | |
parent | Adding debian version 6.05.01-1. (diff) | |
download | manpages-3af6d22bb3850ab2bac67287e3a3d3b0e32868e5.tar.xz manpages-3af6d22bb3850ab2bac67287e3a3d3b0e32868e5.zip |
Merging upstream version 6.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | man2/sched_yield.2 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/man2/sched_yield.2 b/man2/sched_yield.2 index 154fd4f..caf7792 100644 --- a/man2/sched_yield.2 +++ b/man2/sched_yield.2 @@ -7,7 +7,7 @@ .\" 1996-04-10 Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de> .\" revision .\" -.TH sched_yield 2 2023-05-03 "Linux man-pages 6.05.01" +.TH sched_yield 2 2023-10-31 "Linux man-pages 6.7" .SH NAME sched_yield \- yield the processor .SH LIBRARY @@ -16,7 +16,7 @@ Standard C library .SH SYNOPSIS .nf .B #include <sched.h> -.PP +.P .B int sched_yield(void); .fi .SH DESCRIPTION @@ -40,7 +40,7 @@ POSIX.1-2008. .SH HISTORY POSIX.1-2001 (but optional). POSIX.1-2008. -.PP +.P Before POSIX.1-2008, systems on which .BR sched_yield () @@ -59,12 +59,12 @@ Use of with nondeterministic scheduling policies such as .B SCHED_OTHER is unspecified and very likely means your application design is broken. -.PP +.P If the calling thread is the only thread in the highest priority list at that time, it will continue to run after a call to .BR sched_yield (). -.PP +.P Avoid calling .BR sched_yield () unnecessarily or inappropriately |