diff options
author | gfleury <gfleury@disroot.org> | 2024-11-18 13:21:43 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-11-19 01:37:35 +0100 |
commit | f26b272a75d8b57b3b7c213bf6eb413724b9827b (patch) | |
tree | e1614f04b4aaaf92a4d354a5913e6d4de7d34cce /sysdeps/htl/pthread-functions.h | |
parent | 32aa498cebb8f34ee4d9f71fbaac2ffd92c19278 (diff) | |
download | glibc-f26b272a75d8b57b3b7c213bf6eb413724b9827b.zip glibc-f26b272a75d8b57b3b7c213bf6eb413724b9827b.tar.gz glibc-f26b272a75d8b57b3b7c213bf6eb413724b9827b.tar.bz2 |
htl: move pthread_attr_setschedparam into libc.
Signed-off-by: gfleury <gfleury@disroot.org>
Diffstat (limited to 'sysdeps/htl/pthread-functions.h')
-rw-r--r-- | sysdeps/htl/pthread-functions.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sysdeps/htl/pthread-functions.h b/sysdeps/htl/pthread-functions.h index 1c691db..17c97ef 100644 --- a/sysdeps/htl/pthread-functions.h +++ b/sysdeps/htl/pthread-functions.h @@ -22,8 +22,6 @@ #include <pthread.h> int __pthread_attr_init (pthread_attr_t *); -int __pthread_attr_setschedparam (pthread_attr_t *, - const struct sched_param *); int __pthread_condattr_destroy (pthread_condattr_t *); int __pthread_condattr_init (pthread_condattr_t *); int __pthread_cond_broadcast (pthread_cond_t *); @@ -62,8 +60,6 @@ int _cthreads_ftrylockfile (FILE *); struct pthread_functions { int (*ptr_pthread_attr_init) (pthread_attr_t *); - int (*ptr_pthread_attr_setschedparam) (pthread_attr_t *, - const struct sched_param *); int (*ptr_pthread_condattr_destroy) (pthread_condattr_t *); int (*ptr_pthread_condattr_init) (pthread_condattr_t *); int (*ptr_pthread_cond_broadcast) (pthread_cond_t *); |