diff options
author | Guy-Fleury Iteriteka <gfleury@disroot.org> | 2023-07-16 10:44:10 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-24 01:57:13 +0200 |
commit | fb2d92a5b31758900cb147ec8c6f656f404205ba (patch) | |
tree | fc6adcc1c094c76fb1aa8152ddef065a8213eb46 /sysdeps/htl/pthread-functions.h | |
parent | 62cf5d2bb3c74aac2f452a77ae0c29c0cc8dde8a (diff) | |
download | glibc-fb2d92a5b31758900cb147ec8c6f656f404205ba.tar glibc-fb2d92a5b31758900cb147ec8c6f656f404205ba.tar.gz glibc-fb2d92a5b31758900cb147ec8c6f656f404205ba.tar.bz2 glibc-fb2d92a5b31758900cb147ec8c6f656f404205ba.zip |
htl: move pthread_attr_setinheritsched into libc
Signed-off-by: Guy-Fleury Iteriteka <gfleury@disroot.org>
Message-Id: <20230716084414.107245-7-gfleury@disroot.org>
Diffstat (limited to 'sysdeps/htl/pthread-functions.h')
-rw-r--r-- | sysdeps/htl/pthread-functions.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/htl/pthread-functions.h b/sysdeps/htl/pthread-functions.h index 621b97cf05..4054d06918 100644 --- a/sysdeps/htl/pthread-functions.h +++ b/sysdeps/htl/pthread-functions.h @@ -25,7 +25,6 @@ int __pthread_attr_destroy (pthread_attr_t *); int __pthread_attr_init (pthread_attr_t *); int __pthread_attr_getdetachstate (const pthread_attr_t *, int *); int __pthread_attr_setdetachstate (pthread_attr_t *, int); -int __pthread_attr_setinheritsched (pthread_attr_t *, int); int __pthread_attr_setschedparam (pthread_attr_t *, const struct sched_param *); int __pthread_attr_getschedpolicy (const pthread_attr_t *, int *); @@ -73,7 +72,6 @@ struct pthread_functions int (*ptr_pthread_attr_init) (pthread_attr_t *); int (*ptr_pthread_attr_getdetachstate) (const pthread_attr_t *, int *); int (*ptr_pthread_attr_setdetachstate) (pthread_attr_t *, int); - int (*ptr_pthread_attr_setinheritsched) (pthread_attr_t *, int); int (*ptr_pthread_attr_setschedparam) (pthread_attr_t *, const struct sched_param *); int (*ptr_pthread_attr_getschedpolicy) (const pthread_attr_t *, int *); |