diff options
author | Guy-Fleury Iteriteka <gfleury@disroot.org> | 2023-07-16 10:44:08 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-24 01:57:10 +0200 |
commit | 79de1a0ca28af8f000688dbd51addad78bd804b1 (patch) | |
tree | 2b3e635a2da3a96c49c5daf25ff3c9aed16afec3 /sysdeps/htl/pthread-functions.h | |
parent | 3caa6362d087e68ec864a08fc065ab0e72d29d71 (diff) | |
download | glibc-79de1a0ca28af8f000688dbd51addad78bd804b1.tar glibc-79de1a0ca28af8f000688dbd51addad78bd804b1.tar.gz glibc-79de1a0ca28af8f000688dbd51addad78bd804b1.tar.bz2 glibc-79de1a0ca28af8f000688dbd51addad78bd804b1.zip |
htl: move pthread_attr_getschedparam into libc
Signed-off-by: Guy-Fleury Iteriteka <gfleury@disroot.org>
Message-Id: <20230716084414.107245-5-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 76bf143234..d1cd7a48fa 100644 --- a/sysdeps/htl/pthread-functions.h +++ b/sysdeps/htl/pthread-functions.h @@ -27,8 +27,6 @@ int __pthread_attr_getdetachstate (const pthread_attr_t *, int *); int __pthread_attr_setdetachstate (pthread_attr_t *, int); int __pthread_attr_getinheritsched (const pthread_attr_t *, int *); int __pthread_attr_setinheritsched (pthread_attr_t *, int); -int __pthread_attr_getschedparam (const pthread_attr_t *, - struct sched_param *); int __pthread_attr_setschedparam (pthread_attr_t *, const struct sched_param *); int __pthread_attr_getschedpolicy (const pthread_attr_t *, int *); @@ -78,8 +76,6 @@ struct pthread_functions int (*ptr_pthread_attr_setdetachstate) (pthread_attr_t *, int); int (*ptr_pthread_attr_getinheritsched) (const pthread_attr_t *, int *); int (*ptr_pthread_attr_setinheritsched) (pthread_attr_t *, int); - int (*ptr_pthread_attr_getschedparam) (const pthread_attr_t *, - struct sched_param *); int (*ptr_pthread_attr_setschedparam) (pthread_attr_t *, const struct sched_param *); int (*ptr_pthread_attr_getschedpolicy) (const pthread_attr_t *, int *); |