mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
htl: move pthread_attr_getschedpolicy into libc
Signed-off-by: Guy-Fleury Iteriteka <gfleury@disroot.org> Message-Id: <20230716084414.107245-8-gfleury@disroot.org>
This commit is contained in:
parent
fb2d92a5b3
commit
0f3a39072b
@ -26,7 +26,7 @@ LCLHDRS :=
|
||||
|
||||
libpthread-routines := pt-attr pt-attr-destroy pt-attr-getdetachstate \
|
||||
pt-attr-getguardsize \
|
||||
pt-attr-getschedpolicy pt-attr-getscope \
|
||||
pt-attr-getscope \
|
||||
pt-attr-getstack pt-attr-getstackaddr pt-attr-getstacksize \
|
||||
pt-attr-init pt-attr-setdetachstate pt-attr-setguardsize \
|
||||
pt-attr-setschedparam \
|
||||
@ -166,7 +166,7 @@ distribute :=
|
||||
|
||||
routines := forward libc_pthread_init alloca_cutoff htlfreeres pt-nthreads pt-pthread_self pt-self pt-equal \
|
||||
pt-getschedparam pt-setschedparam pt-attr-getschedparam pt-attr-getinheritsched \
|
||||
pt-attr-setinheritsched
|
||||
pt-attr-setinheritsched pt-attr-getschedpolicy
|
||||
shared-only-routines = forward
|
||||
|
||||
extra-libs := libpthread
|
||||
|
@ -68,7 +68,6 @@ libpthread {
|
||||
|
||||
pthread_attr_destroy; pthread_attr_getdetachstate;
|
||||
pthread_attr_getguardsize;
|
||||
pthread_attr_getschedpolicy;
|
||||
pthread_attr_getscope; pthread_attr_getstack; pthread_attr_getstackaddr;
|
||||
pthread_attr_getstacksize; pthread_attr_init; pthread_attr_setdetachstate;
|
||||
pthread_attr_setguardsize;
|
||||
|
@ -67,8 +67,6 @@ FORWARD (pthread_attr_setschedparam,
|
||||
(pthread_attr_t *attr, const struct sched_param *param),
|
||||
(attr, param), 0)
|
||||
|
||||
FORWARD (pthread_attr_getschedpolicy,
|
||||
(const pthread_attr_t *attr, int *policy), (attr, policy), 0)
|
||||
FORWARD (pthread_attr_setschedpolicy, (pthread_attr_t *attr, int policy),
|
||||
(attr, policy), 0)
|
||||
|
||||
|
@ -32,7 +32,6 @@ static const struct pthread_functions pthread_functions = {
|
||||
.ptr_pthread_attr_getdetachstate = __pthread_attr_getdetachstate,
|
||||
.ptr_pthread_attr_setdetachstate = __pthread_attr_setdetachstate,
|
||||
.ptr_pthread_attr_setschedparam = __pthread_attr_setschedparam,
|
||||
.ptr_pthread_attr_getschedpolicy = __pthread_attr_getschedpolicy,
|
||||
.ptr_pthread_attr_setschedpolicy = __pthread_attr_setschedpolicy,
|
||||
.ptr_pthread_attr_getscope = __pthread_attr_getscope,
|
||||
.ptr_pthread_attr_setscope = __pthread_attr_setscope,
|
||||
|
@ -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_getschedpolicy (const pthread_attr_t *, int *);
|
||||
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);
|
||||
@ -74,7 +73,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_getschedpolicy) (const pthread_attr_t *, int *);
|
||||
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);
|
||||
|
@ -25,7 +25,6 @@ GLIBC_2.12 pthread_atfork F
|
||||
GLIBC_2.12 pthread_attr_destroy F
|
||||
GLIBC_2.12 pthread_attr_getdetachstate F
|
||||
GLIBC_2.12 pthread_attr_getguardsize F
|
||||
GLIBC_2.12 pthread_attr_getschedpolicy F
|
||||
GLIBC_2.12 pthread_attr_getscope F
|
||||
GLIBC_2.12 pthread_attr_getstack F
|
||||
GLIBC_2.12 pthread_attr_getstackaddr F
|
||||
|
@ -42,7 +42,6 @@ GLIBC_2.38 mtx_unlock F
|
||||
GLIBC_2.38 pthread_attr_destroy F
|
||||
GLIBC_2.38 pthread_attr_getdetachstate F
|
||||
GLIBC_2.38 pthread_attr_getguardsize F
|
||||
GLIBC_2.38 pthread_attr_getschedpolicy F
|
||||
GLIBC_2.38 pthread_attr_getscope F
|
||||
GLIBC_2.38 pthread_attr_getstack F
|
||||
GLIBC_2.38 pthread_attr_getstackaddr F
|
||||
|
Loading…
Reference in New Issue
Block a user