This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/gnu-master-aarch64-spec2k6-Os_LTO in repository toolchain/ci/glibc.
from 85bd1ddbdf RISC-V: Fix elfutils testsuite unwind failures. adds 24ca04febe benchtests: Remove useless ORIG_SRC in memmove benchmarks adds 3904fd85d3 Add malloc micro benchmark adds 20d0195c71 Add missing bench-malloc-simple.c file. adds eb76e5b465 nptl: Reinstate pthread_timedjoin_np as a cancellation point [...] adds 712182c8dc Fix fall-through warnings in sunrpc/xdr.c. adds 56a731d4ad Avoid readline conflicts in pexpect new 365f05c7a5 Fix implicit-fallthrough warnings in tst-setjmp.c. new 8a11f97062 Remove qualifier from function return type in tst-svc_register.c. new bc10e22c90 nptl: Fix invalid Systemtap probe in pthread_join [BZ #24211] new e442e40de5 io: Consolidate lockf implementation
The 4 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: ChangeLog | 90 ++++++++++ benchtests/Makefile | 18 +- benchtests/bench-malloc-simple.c | 188 +++++++++++++++++++++ benchtests/bench-memmove-large.c | 8 +- benchtests/bench-memmove.c | 8 +- io/Makefile | 2 +- io/lockf.c | 54 ++---- io/lockf64.c | 67 +++----- io/tst-lockf.c | 138 +++++++++++++++ nptl/Makefile | 3 +- nptl/lll_timedwait_tid.c | 70 -------- nptl/pthread_join_common.c | 66 +++++++- nptl/tst-join5.c | 92 ++++------ .../x32/tst-size_t-wcsnlen.c => nptl/tst-join8.c | 6 +- .../x32/tst-size_t-wcsnlen.c => nptl/tst-join9.c | 7 +- scripts/test_printers_common.py | 4 + setjmp/tst-setjmp.c | 2 +- sunrpc/tst-svc_register.c | 2 +- sunrpc/xdr.c | 7 +- sysdeps/nptl/lowlevellock-futex.h | 7 + sysdeps/nptl/lowlevellock.h | 26 --- sysdeps/sparc/sparc32/lll_timedwait_tid.c | 1 - sysdeps/sparc/sparc32/lowlevellock.c | 40 ----- sysdeps/unix/sysv/linux/arm/lockf64.c | 1 - sysdeps/unix/sysv/linux/i386/lll_timedwait_tid.c | 1 - sysdeps/unix/sysv/linux/i386/lockf64.c | 70 -------- sysdeps/unix/sysv/linux/i386/lowlevellock.S | 66 -------- sysdeps/unix/sysv/linux/i386/lowlevellock.h | 25 --- sysdeps/unix/sysv/linux/lowlevellock-futex.h | 7 + sysdeps/unix/sysv/linux/m68k/lockf64.c | 1 - sysdeps/unix/sysv/linux/mips/mips32/lockf64.c | 1 - sysdeps/unix/sysv/linux/mips/mips64/n32/lockf64.c | 1 - .../unix/sysv/linux/powerpc/powerpc32/lockf64.c | 1 - sysdeps/unix/sysv/linux/s390/s390-32/lockf64.c | 1 - sysdeps/unix/sysv/linux/sh/lockf64.c | 1 - sysdeps/unix/sysv/linux/sparc/lowlevellock.h | 25 --- sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c | 1 - sysdeps/unix/sysv/linux/x86_64/lll_timedwait_tid.c | 1 - sysdeps/unix/sysv/linux/x86_64/lowlevellock.S | 83 --------- sysdeps/unix/sysv/linux/x86_64/lowlevellock.h | 25 --- 40 files changed, 607 insertions(+), 610 deletions(-) create mode 100644 benchtests/bench-malloc-simple.c create mode 100644 io/tst-lockf.c delete mode 100644 nptl/lll_timedwait_tid.c copy sysdeps/x86_64/x32/tst-size_t-wcsnlen.c => nptl/tst-join8.c (86%) copy sysdeps/x86_64/x32/tst-size_t-wcsnlen.c => nptl/tst-join9.c (83%) delete mode 100644 sysdeps/sparc/sparc32/lll_timedwait_tid.c delete mode 100644 sysdeps/unix/sysv/linux/arm/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/i386/lll_timedwait_tid.c delete mode 100644 sysdeps/unix/sysv/linux/i386/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/m68k/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/mips/mips32/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/mips/mips64/n32/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc32/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/sh/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c delete mode 100644 sysdeps/unix/sysv/linux/x86_64/lll_timedwait_tid.c