This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/glibc.
from aac54dcd37 powerpc: Define USE_PPC64_NOTOC iff compiler supports it adds e186fc5a31 nptl: Do not set signal mask on second setjmp return [BZ #28607] adds 456b3c08b6 io: Refactor close_range and closefrom new 4443695598 x86-64: Add vector cos/cosf to libmvec microbenchmark new 37df38bd5f x86-64: Add vector exp/expf to libmvec microbenchmark new 8ab8afb336 x86-64: Add vector log/logf to libmvec microbenchmark new 6a556bac81 x86-64: Add vector pow/powf to libmvec microbenchmark new c58d3b7d00 x86-64: Add vector sin/sinf to libmvec microbenchmark
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/unistd.h | 10 + io/Makefile | 3 +- .../sysv/linux/closefrom.c => io/close_range.c | 34 +- io/closefrom.c | 16 +- {sysdeps/unix/sysv/linux => io}/tst-close_range.c | 8 + nptl/pthread_create.c | 4 +- posix/unistd.h | 10 + sysdeps/mach/hurd/Makefile | 2 +- sysdeps/mach/hurd/bits/unistd_ext.h | 6 - sysdeps/mach/hurd/kernel-features.h | 2 + sysdeps/pthread/Makefile | 1 + .../tst-pthread-exit-signal.c} | 32 +- sysdeps/unix/sysv/linux/Makefile | 1 - sysdeps/unix/sysv/linux/bits/unistd_ext.h | 9 - sysdeps/unix/sysv/linux/closefrom_fallback.c | 4 + sysdeps/unix/sysv/linux/kernel-features.h | 8 + sysdeps/unix/sysv/linux/syscalls.list | 2 +- sysdeps/x86_64/fpu/Makeconfig | 5 + sysdeps/x86_64/fpu/libmvec-cos-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-cosf-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-exp-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-expf-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-log-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-logf-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-pow-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-powf-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-sin-inputs | 4100 ++++++++++++++++++++ sysdeps/x86_64/fpu/libmvec-sinf-inputs | 4100 ++++++++++++++++++++ 28 files changed, 41108 insertions(+), 49 deletions(-) rename sysdeps/unix/sysv/linux/closefrom.c => io/close_range.c (59%) rename {sysdeps/unix/sysv/linux => io}/tst-close_range.c (98%) rename sysdeps/{mach/hurd/closefrom.c => pthread/tst-pthread-exit-signal.c} (52%) create mode 100644 sysdeps/x86_64/fpu/libmvec-cos-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-cosf-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-exp-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-expf-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-log-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-logf-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-pow-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-powf-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-sin-inputs create mode 100644 sysdeps/x86_64/fpu/libmvec-sinf-inputs