diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-10-07 20:00:38 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-10-07 20:00:38 +0200 |
commit | ca602c1536ce2777f95c07525f3c42d78812e665 (patch) | |
tree | e6d867ef9ddf4680cb2d79700eac6ac62d907fa3 /sysdeps/nptl | |
parent | 921abe47299255a6480456c98fbb53bdc5db92a2 (diff) | |
download | glibc-ca602c1536ce2777f95c07525f3c42d78812e665.tar glibc-ca602c1536ce2777f95c07525f3c42d78812e665.tar.gz glibc-ca602c1536ce2777f95c07525f3c42d78812e665.tar.bz2 glibc-ca602c1536ce2777f95c07525f3c42d78812e665.zip |
nptl: Move pthread_attr_setschedparam implementation into libc
This is part of the libpthread removal project:
<https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/nptl')
-rw-r--r-- | sysdeps/nptl/pthread-functions.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/nptl/pthread-functions.h b/sysdeps/nptl/pthread-functions.h index 4711c68575..b5383ecbcf 100644 --- a/sysdeps/nptl/pthread-functions.h +++ b/sysdeps/nptl/pthread-functions.h @@ -30,8 +30,6 @@ struct xid_command; the thread functions. */ struct pthread_functions { - 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 *); |