- Backport: stdlib: Do not use GLIBC_PRIVATE ABI for errno in libc_nonshared.a
- Backport: manual: Extract the @manpageurl{func,sec} macro
- Backport: Linux: Add the sched_setattr and sched_getattr functions
Note: The patch has been adapted downstream to avoid ABI changes
- Backport: Linux: Add missing scheduler constants to <sched.h>
- Backport: Linux: Do not check unused bytes after sched_getattr in tst-sched_setattr
- Backport: Linux: Add the pthread_gettid_np function (bug 27880)
Note: The patch has been adapted downstream to avoid ABI changes
- Backport: Linux: Remove attribute access from sched_getattr (bug 32781)
- Backport: Linux: Add new test misc/tst-sched_setattr-thread
- Backport: nptl: Include <stdbool.h> in tst-pthread_gettid_np.c
- Backport: Makefile: Clean up pthread_atfork integration
- Backport: manual: fix typo for sched_[sg]etattr
Resolves: RHEL-58357
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
commit f176bf2a06b458dea8186fb2ff3bb8ea24da6d67
|
|
Author: DJ Delorie <dj@redhat.com>
|
|
Date: Wed May 7 19:23:06 2025 -0400
|
|
|
|
manual: fix typo for sched_[sg]etattr
|
|
|
|
Originally added in 41a90f3f5f which says it's adding sched_getattr
|
|
and sched_setattr.
|
|
|
|
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
|
|
|
|
diff --git a/manual/resource.texi b/manual/resource.texi
|
|
index 40ab3572e04747c7..6729ada79402f0ad 100644
|
|
--- a/manual/resource.texi
|
|
+++ b/manual/resource.texi
|
|
@@ -1003,7 +1003,7 @@ For additional information, consult the manual page
|
|
@manpageurl{sched_setattr,2}. @xref{Linux Kernel}.
|
|
@end deftp
|
|
|
|
-@deftypefun int sched_setaddr (pid_t @var{tid}, struct sched_attr *@var{attr}, unsigned int flags)
|
|
+@deftypefun int sched_setattr (pid_t @var{tid}, struct sched_attr *@var{attr}, unsigned int flags)
|
|
@standards{Linux, sched.h}
|
|
@safety{@mtsafe{}@assafe{}@acsafe{}}
|
|
This functions applies the scheduling policy described by
|
|
@@ -1046,7 +1046,7 @@ policy of the thread @var{tid}.
|
|
Other error codes depend on the scheduling policy.
|
|
@end deftypefun
|
|
|
|
-@deftypefun int sched_getaddr (pid_t @var{tid}, struct sched_attr *@var{attr}, unsigned int size, unsigned int flags)
|
|
+@deftypefun int sched_getattr (pid_t @var{tid}, struct sched_attr *@var{attr}, unsigned int size, unsigned int flags)
|
|
@standards{Linux, sched.h}
|
|
@safety{@mtsafe{}@assafe{}@acsafe{}}
|
|
This function obtains the scheduling policy of the thread @var{tid}
|