diff options
33 files changed, 69 insertions, 35 deletions
diff --git a/ChangeLog b/ChangeLog index 4b0111095f..a91af5403d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,70 @@ +2019-10-04 Florian Weimer <fweimer@redhat.com> + + nptl: Move pthread_attr_setinheritsched implementation into libc. + * nptl/Makefile (routines): Add pthread_attr_setinheritsched. + (libpthread-routines): Remove pthread_attr_setinheritsched. + * nptl/Versions (libpthread GLIBC_2.0): Remove + pthread_attr_setinheritsched. + * nptl/forward.c (pthread_attr_setinheritsched): Remove definition. + * nptl/nptl-init.c (pthread_functions): Remove initializer for + ptr_pthread_attr_setinheritsched. + * sysdeps/nptl/pthread-functions.h (struct pthread_functions): + Remove ptr_pthread_attr_setinheritsched member. + * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist (GLIBC_2.17): + Remove pthread_attr_setinheritsched. + * sysdeps/unix/sysv/linux/alpha/libpthread.abilist (GLIBC_2.0): + Likewise. + * sysdeps/unix/sysv/linux/arm/be/libpthread.abilist (GLIBC_2.4): + Likewise. + * sysdeps/unix/sysv/linux/arm/le/libpthread.abilist (GLIBC_2.4): + Likewise. + * sysdeps/unix/sysv/linux/csky/libpthread.abilist (GLIBC_2.29): + Likewise. + * sysdeps/unix/sysv/linux/hppa/libpthread.abilist (GLIBC_2.2): + Likewise. + * sysdeps/unix/sysv/linux/i386/libpthread.abilist (GLIBC_2.0): + Likewise. + * sysdeps/unix/sysv/linux/ia64/libpthread.abilist (GLIBC_2.2): + Likewise. + * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist + (GLIBC_2.4): Likewise. + * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist + (GLIBC_2.0): Likewise. + * sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist + (GLIBC_2.18): Likewise. + * sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist + (GLIBC_2.18): Likewise. + * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist + (GLIBC_2.0): Likewise. + * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist + (GLIBC_2.0): Likewise. + * sysdeps/unix/sysv/linux/nios2/libpthread.abilist (GLIBC_2.21): + Likewise. + * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist + (GLIBC_2.0): Likewise. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist + (GLIBC_2.3): Likewise. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist + (GLIBC_2.17): Likewise. + * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist + (GLIBC_2.27): Likewise. + * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist + (GLIBC_2.0): Likewise. + * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist + (GLIBC_2.2): Likewise. + * sysdeps/unix/sysv/linux/sh/be/libpthread.abilist (GLIBC_2.2): + Likewise. + * sysdeps/unix/sysv/linux/sh/le/libpthread.abilist (GLIBC_2.2): + Likewise. + * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist + (GLIBC_2.0): Likewise. + * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist + (GLIBC_2.2): Likewise. + * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist + (GLIBC_2.2.5): Likewise. + * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist + (GLIBC_2.16): Likewise. + 2019-10-02 Joseph Myers <joseph@codesourcery.com> * sunrpc/clnt_udp.c: Include <libc-diag.h>. diff --git a/nptl/Makefile b/nptl/Makefile index 66f89f17f9..53c556e503 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -32,7 +32,8 @@ routines = alloca_cutoff forward libc-lowlevellock libc-cancellation \ register-atfork pthread_atfork pthread_self thrd_current \ thrd_equal thrd_sleep thrd_yield pthread_equal \ pthread_attr_destroy pthread_attr_init pthread_attr_getdetachstate \ - pthread_attr_setdetachstate pthread_attr_getinheritsched + pthread_attr_setdetachstate pthread_attr_getinheritsched \ + pthread_attr_setinheritsched shared-only-routines = forward static-only-routines = pthread_atfork @@ -58,7 +59,6 @@ libpthread-routines = nptl-init nptlfreeres vars events version pt-interp \ pthread_attr_getguardsize pthread_attr_setguardsize \ pthread_attr_getschedparam pthread_attr_setschedparam \ pthread_attr_getschedpolicy pthread_attr_setschedpolicy \ - pthread_attr_setinheritsched \ pthread_attr_getscope pthread_attr_setscope \ pthread_attr_getstackaddr pthread_attr_setstackaddr \ pthread_attr_getstacksize pthread_attr_setstacksize \ diff --git a/nptl/Versions b/nptl/Versions index 6f4d74ffda..70af2738d2 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -51,7 +51,6 @@ libpthread { pthread_attr_getschedparam; pthread_attr_setschedparam; pthread_attr_getschedpolicy; pthread_attr_setschedpolicy; - pthread_attr_setinheritsched; pthread_attr_getscope; pthread_attr_setscope; pthread_mutex_init; pthread_mutex_destroy; diff --git a/nptl/forward.c b/nptl/forward.c index 4c517e975a..807682cfac 100644 --- a/nptl/forward.c +++ b/nptl/forward.c @@ -56,9 +56,6 @@ name decl \ FORWARD2 (name, int, decl, params, return defretval) -FORWARD (pthread_attr_setinheritsched, (pthread_attr_t *attr, int inherit), - (attr, inherit), 0) - FORWARD (pthread_attr_getschedparam, (const pthread_attr_t *attr, struct sched_param *param), (attr, param), 0) diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c index 4cd0852ea5..0a317a9572 100644 --- a/nptl/nptl-init.c +++ b/nptl/nptl-init.c @@ -72,7 +72,6 @@ void __nptl_set_robust (struct pthread *); #ifdef SHARED static const struct pthread_functions pthread_functions = { - .ptr_pthread_attr_setinheritsched = __pthread_attr_setinheritsched, .ptr_pthread_attr_getschedparam = __pthread_attr_getschedparam, .ptr_pthread_attr_setschedparam = __pthread_attr_setschedparam, .ptr_pthread_attr_getschedpolicy = __pthread_attr_getschedpolicy, diff --git a/sysdeps/nptl/pthread-functions.h b/sysdeps/nptl/pthread-functions.h index 21f06eb9a7..51cf3cf408 100644 --- a/sysdeps/nptl/pthread-functions.h +++ b/sysdeps/nptl/pthread-functions.h @@ -30,7 +30,6 @@ struct xid_command; the thread functions. */ struct pthread_functions { - 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 *, diff --git a/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist b/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist index cdc3ad5f34..311d5c6e57 100644 --- a/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.17 pthread_attr_getstackaddr F GLIBC_2.17 pthread_attr_getstacksize F GLIBC_2.17 pthread_attr_setaffinity_np F GLIBC_2.17 pthread_attr_setguardsize F -GLIBC_2.17 pthread_attr_setinheritsched F GLIBC_2.17 pthread_attr_setschedparam F GLIBC_2.17 pthread_attr_setschedpolicy F GLIBC_2.17 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/alpha/libpthread.abilist b/sysdeps/unix/sysv/linux/alpha/libpthread.abilist index e2c883272a..79a51340f9 100644 --- a/sysdeps/unix/sysv/linux/alpha/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/alpha/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist b/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist index db670efe7b..4508a1fe65 100644 --- a/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist @@ -114,7 +114,6 @@ GLIBC_2.4 pthread_attr_getstackaddr F GLIBC_2.4 pthread_attr_getstacksize F GLIBC_2.4 pthread_attr_setaffinity_np F GLIBC_2.4 pthread_attr_setguardsize F -GLIBC_2.4 pthread_attr_setinheritsched F GLIBC_2.4 pthread_attr_setschedparam F GLIBC_2.4 pthread_attr_setschedpolicy F GLIBC_2.4 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist b/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist index db670efe7b..4508a1fe65 100644 --- a/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist @@ -114,7 +114,6 @@ GLIBC_2.4 pthread_attr_getstackaddr F GLIBC_2.4 pthread_attr_getstacksize F GLIBC_2.4 pthread_attr_setaffinity_np F GLIBC_2.4 pthread_attr_setguardsize F -GLIBC_2.4 pthread_attr_setinheritsched F GLIBC_2.4 pthread_attr_setschedparam F GLIBC_2.4 pthread_attr_setschedpolicy F GLIBC_2.4 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/csky/libpthread.abilist b/sysdeps/unix/sysv/linux/csky/libpthread.abilist index 44eedc7647..4917345e13 100644 --- a/sysdeps/unix/sysv/linux/csky/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/csky/libpthread.abilist @@ -88,7 +88,6 @@ GLIBC_2.29 pthread_attr_getstackaddr F GLIBC_2.29 pthread_attr_getstacksize F GLIBC_2.29 pthread_attr_setaffinity_np F GLIBC_2.29 pthread_attr_setguardsize F -GLIBC_2.29 pthread_attr_setinheritsched F GLIBC_2.29 pthread_attr_setschedparam F GLIBC_2.29 pthread_attr_setschedpolicy F GLIBC_2.29 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/hppa/libpthread.abilist b/sysdeps/unix/sysv/linux/hppa/libpthread.abilist index 545476131b..a6096f9bf5 100644 --- a/sysdeps/unix/sysv/linux/hppa/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/hppa/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.2 pthread_attr_getstack F GLIBC_2.2 pthread_attr_getstackaddr F GLIBC_2.2 pthread_attr_getstacksize F GLIBC_2.2 pthread_attr_setguardsize F -GLIBC_2.2 pthread_attr_setinheritsched F GLIBC_2.2 pthread_attr_setschedparam F GLIBC_2.2 pthread_attr_setschedpolicy F GLIBC_2.2 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/i386/libpthread.abilist b/sysdeps/unix/sysv/linux/i386/libpthread.abilist index f9e7821410..c165acbb8e 100644 --- a/sysdeps/unix/sysv/linux/i386/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/i386/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/ia64/libpthread.abilist b/sysdeps/unix/sysv/linux/ia64/libpthread.abilist index 5be0e0f7b4..d811361942 100644 --- a/sysdeps/unix/sysv/linux/ia64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/ia64/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.2 pthread_attr_getstack F GLIBC_2.2 pthread_attr_getstackaddr F GLIBC_2.2 pthread_attr_getstacksize F GLIBC_2.2 pthread_attr_setguardsize F -GLIBC_2.2 pthread_attr_setinheritsched F GLIBC_2.2 pthread_attr_setschedparam F GLIBC_2.2 pthread_attr_setschedpolicy F GLIBC_2.2 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist index db670efe7b..4508a1fe65 100644 --- a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist @@ -114,7 +114,6 @@ GLIBC_2.4 pthread_attr_getstackaddr F GLIBC_2.4 pthread_attr_getstacksize F GLIBC_2.4 pthread_attr_setaffinity_np F GLIBC_2.4 pthread_attr_setguardsize F -GLIBC_2.4 pthread_attr_setinheritsched F GLIBC_2.4 pthread_attr_setschedparam F GLIBC_2.4 pthread_attr_setschedpolicy F GLIBC_2.4 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist b/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist index f9e7821410..c165acbb8e 100644 --- a/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist b/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist index 7bee5b4e87..d688f73006 100644 --- a/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.18 pthread_attr_getstackaddr F GLIBC_2.18 pthread_attr_getstacksize F GLIBC_2.18 pthread_attr_setaffinity_np F GLIBC_2.18 pthread_attr_setguardsize F -GLIBC_2.18 pthread_attr_setinheritsched F GLIBC_2.18 pthread_attr_setschedparam F GLIBC_2.18 pthread_attr_setschedpolicy F GLIBC_2.18 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist b/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist index 7bee5b4e87..d688f73006 100644 --- a/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.18 pthread_attr_getstackaddr F GLIBC_2.18 pthread_attr_getstacksize F GLIBC_2.18 pthread_attr_setaffinity_np F GLIBC_2.18 pthread_attr_setguardsize F -GLIBC_2.18 pthread_attr_setinheritsched F GLIBC_2.18 pthread_attr_setschedparam F GLIBC_2.18 pthread_attr_setschedpolicy F GLIBC_2.18 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist b/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist index e0390a6bcb..56fabd82d5 100644 --- a/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist b/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist index e0390a6bcb..56fabd82d5 100644 --- a/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/nios2/libpthread.abilist b/sysdeps/unix/sysv/linux/nios2/libpthread.abilist index 21abc950c8..9cc1586665 100644 --- a/sysdeps/unix/sysv/linux/nios2/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/nios2/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.21 pthread_attr_getstackaddr F GLIBC_2.21 pthread_attr_getstacksize F GLIBC_2.21 pthread_attr_setaffinity_np F GLIBC_2.21 pthread_attr_setguardsize F -GLIBC_2.21 pthread_attr_setinheritsched F GLIBC_2.21 pthread_attr_setschedparam F GLIBC_2.21 pthread_attr_setschedpolicy F GLIBC_2.21 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist index c410fa893a..78110ce740 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist index a0a805888e..838b1a7b00 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist @@ -101,7 +101,6 @@ GLIBC_2.3 pthread_attr_getstack F GLIBC_2.3 pthread_attr_getstackaddr F GLIBC_2.3 pthread_attr_getstacksize F GLIBC_2.3 pthread_attr_setguardsize F -GLIBC_2.3 pthread_attr_setinheritsched F GLIBC_2.3 pthread_attr_setschedparam F GLIBC_2.3 pthread_attr_setschedpolicy F GLIBC_2.3 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist index cdc3ad5f34..311d5c6e57 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.17 pthread_attr_getstackaddr F GLIBC_2.17 pthread_attr_getstacksize F GLIBC_2.17 pthread_attr_setaffinity_np F GLIBC_2.17 pthread_attr_setguardsize F -GLIBC_2.17 pthread_attr_setinheritsched F GLIBC_2.17 pthread_attr_setschedparam F GLIBC_2.17 pthread_attr_setschedpolicy F GLIBC_2.17 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist index aa6f7936e2..34d7ed25d4 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist @@ -77,7 +77,6 @@ GLIBC_2.27 pthread_attr_getstackaddr F GLIBC_2.27 pthread_attr_getstacksize F GLIBC_2.27 pthread_attr_setaffinity_np F GLIBC_2.27 pthread_attr_setguardsize F -GLIBC_2.27 pthread_attr_setinheritsched F GLIBC_2.27 pthread_attr_setschedparam F GLIBC_2.27 pthread_attr_setschedpolicy F GLIBC_2.27 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist index c504fbfacc..de05a5e1e0 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist index 933f20299c..fd6ffa737a 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist @@ -82,7 +82,6 @@ GLIBC_2.2 pthread_attr_getstack F GLIBC_2.2 pthread_attr_getstackaddr F GLIBC_2.2 pthread_attr_getstacksize F GLIBC_2.2 pthread_attr_setguardsize F -GLIBC_2.2 pthread_attr_setinheritsched F GLIBC_2.2 pthread_attr_setschedparam F GLIBC_2.2 pthread_attr_setschedpolicy F GLIBC_2.2 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist b/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist index 545476131b..a6096f9bf5 100644 --- a/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.2 pthread_attr_getstack F GLIBC_2.2 pthread_attr_getstackaddr F GLIBC_2.2 pthread_attr_getstacksize F GLIBC_2.2 pthread_attr_setguardsize F -GLIBC_2.2 pthread_attr_setinheritsched F GLIBC_2.2 pthread_attr_setschedparam F GLIBC_2.2 pthread_attr_setschedpolicy F GLIBC_2.2 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist b/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist index 545476131b..a6096f9bf5 100644 --- a/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.2 pthread_attr_getstack F GLIBC_2.2 pthread_attr_getstackaddr F GLIBC_2.2 pthread_attr_getstacksize F GLIBC_2.2 pthread_attr_setguardsize F -GLIBC_2.2 pthread_attr_setinheritsched F GLIBC_2.2 pthread_attr_setschedparam F GLIBC_2.2 pthread_attr_setschedpolicy F GLIBC_2.2 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist b/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist index e2c883272a..79a51340f9 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist @@ -49,7 +49,6 @@ GLIBC_2.0 pthread_atfork F GLIBC_2.0 pthread_attr_getschedparam F GLIBC_2.0 pthread_attr_getschedpolicy F GLIBC_2.0 pthread_attr_getscope F -GLIBC_2.0 pthread_attr_setinheritsched F GLIBC_2.0 pthread_attr_setschedparam F GLIBC_2.0 pthread_attr_setschedpolicy F GLIBC_2.0 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist b/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist index 5be0e0f7b4..d811361942 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.2 pthread_attr_getstack F GLIBC_2.2 pthread_attr_getstackaddr F GLIBC_2.2 pthread_attr_getstacksize F GLIBC_2.2 pthread_attr_setguardsize F -GLIBC_2.2 pthread_attr_setinheritsched F GLIBC_2.2 pthread_attr_setschedparam F GLIBC_2.2 pthread_attr_setschedpolicy F GLIBC_2.2 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist b/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist index 87be582075..e165035737 100644 --- a/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.2.5 pthread_attr_getstack F GLIBC_2.2.5 pthread_attr_getstackaddr F GLIBC_2.2.5 pthread_attr_getstacksize F GLIBC_2.2.5 pthread_attr_setguardsize F -GLIBC_2.2.5 pthread_attr_setinheritsched F GLIBC_2.2.5 pthread_attr_setschedparam F GLIBC_2.2.5 pthread_attr_setschedpolicy F GLIBC_2.2.5 pthread_attr_setscope F diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist b/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist index 5539c4e66d..14b9f377bc 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist @@ -80,7 +80,6 @@ GLIBC_2.16 pthread_attr_getstackaddr F GLIBC_2.16 pthread_attr_getstacksize F GLIBC_2.16 pthread_attr_setaffinity_np F GLIBC_2.16 pthread_attr_setguardsize F -GLIBC_2.16 pthread_attr_setinheritsched F GLIBC_2.16 pthread_attr_setschedparam F GLIBC_2.16 pthread_attr_setschedpolicy F GLIBC_2.16 pthread_attr_setscope F |