diff options
author | Guy-Fleury Iteriteka <gfleury@disroot.org> | 2023-07-16 10:44:12 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-24 01:57:16 +0200 |
commit | c2c9feebdc8e4e43d1d0002f587bd3b7c46d598f (patch) | |
tree | 3fc84d040a9367c01e23ac0b2ea13bedae0476d1 /sysdeps/htl/pthread-functions.h | |
parent | 0f3a39072b5893bef6d06e15f98e2a06a11df856 (diff) | |
download | glibc-c2c9feebdc8e4e43d1d0002f587bd3b7c46d598f.tar glibc-c2c9feebdc8e4e43d1d0002f587bd3b7c46d598f.tar.gz glibc-c2c9feebdc8e4e43d1d0002f587bd3b7c46d598f.tar.bz2 glibc-c2c9feebdc8e4e43d1d0002f587bd3b7c46d598f.zip |
htl: move pthread_attr_setschedpolicy into libc
Signed-off-by: Guy-Fleury Iteriteka <gfleury@disroot.org>
Message-Id: <20230716084414.107245-9-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 f08f4750a2..68c16476e3 100644 --- a/sysdeps/htl/pthread-functions.h +++ b/sysdeps/htl/pthread-functions.h @@ -27,7 +27,6 @@ int __pthread_attr_getdetachstate (const pthread_attr_t *, int *); int __pthread_attr_setdetachstate (pthread_attr_t *, int); int __pthread_attr_setschedparam (pthread_attr_t *, const struct sched_param *); -int __pthread_attr_setschedpolicy (pthread_attr_t *, int); int __pthread_attr_getscope (const pthread_attr_t *, int *); int __pthread_attr_setscope (pthread_attr_t *, int); int __pthread_condattr_destroy (pthread_condattr_t *); @@ -73,7 +72,6 @@ struct pthread_functions int (*ptr_pthread_attr_setdetachstate) (pthread_attr_t *, int); int (*ptr_pthread_attr_setschedparam) (pthread_attr_t *, const struct sched_param *); - int (*ptr_pthread_attr_setschedpolicy) (pthread_attr_t *, int); int (*ptr_pthread_attr_getscope) (const pthread_attr_t *, int *); int (*ptr_pthread_attr_setscope) (pthread_attr_t *, int); int (*ptr_pthread_condattr_destroy) (pthread_condattr_t *); |