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-aarch64-build_cross in repository toolchain/ci/glibc.
from f12ec02f53 benchtests: Fixed bench-memcpy-random: buf1: mprotect failed adds fa527f345c aarch64: Added optimized memcpy and memmove for A64FX adds 4f26956d5b aarch64: Added optimized memset for A64FX adds 76b0c59e33 nptl: Install SIGSETXID handler with SA_ONSTACK [BZ #27914] adds 65ba6fa431 nptl: Move Linux createthread to nptl adds 42813c675d nptl: Move createthread to pthread_create adds d85ad0e58a support: Add xpthread_attr_setaffinity_np wrapper adds 2c44452b61 nptl: Add pthread_attr_setaffinity_np failure test
No new revisions were added by this update.
Summary of changes: 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/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/unix/sysv/linux/aarch64/cpu-features.c | 4 + sysdeps/unix/sysv/linux/aarch64/cpu-features.h | 4 + sysdeps/unix/sysv/linux/createthread.c | 153 -------- 19 files changed, 895 insertions(+), 250 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 delete mode 100644 sysdeps/unix/sysv/linux/createthread.c