This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/glibc.
from bfbdfe4eab tst-mallinfo2.c: Use correct multiple for total variable adds 77d175e14e config: Added HAVE_AARCH64_SVE_ASM for aarch64 adds bd4317fbd6 aarch64: define BTI_C and BTI_J macros as NOP unless HAVE_AA [...] adds 3856056358 aarch64: Added Vector Length Set test helper script adds f12ec02f53 benchtests: Fixed bench-memcpy-random: buf1: mprotect failed new fa527f345c aarch64: Added optimized memcpy and memmove for A64FX new 4f26956d5b aarch64: Added optimized memset for A64FX new 76b0c59e33 nptl: Install SIGSETXID handler with SA_ONSTACK [BZ #27914] new 65ba6fa431 nptl: Move Linux createthread to nptl new 42813c675d nptl: Move createthread to pthread_create new d85ad0e58a support: Add xpthread_attr_setaffinity_np wrapper new 2c44452b61 nptl: Add pthread_attr_setaffinity_np failure test
The 7 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: INSTALL | 4 + benchtests/bench-memcpy-random.c | 4 +- config.h.in | 5 + manual/install.texi | 3 + manual/tunables.texi | 3 +- nptl/Makefile | 1 + nptl/createthread.c | 45 --- nptl/pthread_create.c | 135 ++++++- ...k-cancel.c => tst-pthread-attr-affinity-fail.c} | 39 +- support/Makefile | 1 + ...hread_kill.c => xpthread_attr_setaffinity_np.c} | 10 +- support/xthread.h | 3 + sysdeps/aarch64/configure | 28 ++ sysdeps/aarch64/configure.ac | 15 + sysdeps/aarch64/multiarch/Makefile | 3 +- sysdeps/aarch64/multiarch/ifunc-impl-list.c | 13 +- sysdeps/aarch64/multiarch/init-arch.h | 4 +- sysdeps/aarch64/multiarch/memcpy.c | 18 +- sysdeps/aarch64/multiarch/memcpy_a64fx.S | 406 +++++++++++++++++++++ sysdeps/aarch64/multiarch/memmove.c | 18 +- sysdeps/aarch64/multiarch/memset.c | 17 +- sysdeps/aarch64/multiarch/memset_a64fx.S | 268 ++++++++++++++ sysdeps/aarch64/sysdep.h | 9 +- sysdeps/unix/sysv/linux/aarch64/cpu-features.c | 4 + sysdeps/unix/sysv/linux/aarch64/cpu-features.h | 4 + sysdeps/unix/sysv/linux/aarch64/vltest.py | 82 +++++ sysdeps/unix/sysv/linux/createthread.c | 153 -------- 27 files changed, 1041 insertions(+), 254 deletions(-) delete mode 100644 nptl/createthread.c copy nptl/{tst-minstack-cancel.c => tst-pthread-attr-affinity-fail.c} (53%) copy support/{xpthread_kill.c => xpthread_attr_setaffinity_np.c} (72%) create mode 100644 sysdeps/aarch64/multiarch/memcpy_a64fx.S create mode 100644 sysdeps/aarch64/multiarch/memset_a64fx.S create mode 100755 sysdeps/unix/sysv/linux/aarch64/vltest.py delete mode 100644 sysdeps/unix/sysv/linux/createthread.c