diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-15 17:35:51 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-15 21:31:08 +0100 |
commit | 1bd7a06a958e93dbd10d99d30ee9ad82fca13f48 (patch) | |
tree | 07a368ec2acde2179d376eebd0a871f737a69144 /sysdeps/htl/bits | |
parent | c1105e34aced53b26f02176b973079eb30fc54b1 (diff) | |
download | glibc-1bd7a06a958e93dbd10d99d30ee9ad82fca13f48.tar.gz glibc-1bd7a06a958e93dbd10d99d30ee9ad82fca13f48.tar.xz glibc-1bd7a06a958e93dbd10d99d30ee9ad82fca13f48.zip |
htl: Hide __pthread_attr's __schedparam type [BZ #23088]
The content of the structure is only used internally, so we can make __pthread_attr_getschedparam and __pthread_attr_setschedparam convert between the public sched_param type and an internal __sched_param. This allows to avoid to spuriously expose the sched_param type. This fixes BZ #23088.
Diffstat (limited to 'sysdeps/htl/bits')
-rw-r--r-- | sysdeps/htl/bits/types/struct___pthread_attr.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sysdeps/htl/bits/types/struct___pthread_attr.h b/sysdeps/htl/bits/types/struct___pthread_attr.h index ec4d6485c8..9ec7ccc5b6 100644 --- a/sysdeps/htl/bits/types/struct___pthread_attr.h +++ b/sysdeps/htl/bits/types/struct___pthread_attr.h @@ -19,8 +19,6 @@ #ifndef _BITS_TYPES_STRUCT___PTHREAD_ATTR #define _BITS_TYPES_STRUCT___PTHREAD_ATTR 1 -#include <bits/types/struct_sched_param.h> - #define __need_size_t #include <stddef.h> @@ -28,11 +26,15 @@ enum __pthread_detachstate; enum __pthread_inheritsched; enum __pthread_contentionscope; +struct __sched_param { + int __sched_priority; +}; + /* This structure describes the attributes of a POSIX thread. Note that not all of them are supported on all systems. */ struct __pthread_attr { - struct sched_param __schedparam; + struct __sched_param __schedparam; void *__stackaddr; size_t __stacksize; size_t __guardsize; |