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_tx1/gnu-release-aarch64-spec2k6-O3 in repository toolchain/ci/glibc.
from 9be62976af hppa: Use END instead of PSEUDO_END in swapcontext.S adds db03235895 NEWS: Move PLT tracking slowdown to glibc 2.35. adds cc9a4a664f elf: Fix memory leak in _dl_find_object_update (bug 29062) adds 6583d53445 S390: Add new s390 platform z16. adds ba9c42ac0e nptl: Handle spurious EINTR when thread cancellation is disa [...] adds bd415684df hurd: Fix arbitrary error code adds 8e8d46d598 mips: Fix mips64n32 64 bit time_t stat support (BZ#29069) adds 68d3a9a696 nptl: Fix pthread_cancel cancelhandling atomic operations adds d3feff2232 m68k: Handle fewer relocations for RTLD_BOOTSTRAP (#BZ29071) adds 70f1eecdc1 scripts: Add glibcelf.py module adds 499a601796 Default to --with-default-link=no (bug 25812) adds c8ee1c85c0 misc: Fix rare fortify crash on wchar funcs. [BZ 29030] adds e5cf8ccca6 INSTALL: Rephrase -with-default-link documentation adds 106b7e0e45 dlfcn: Do not use rtld_active () to determine ld.so state (b [...] adds cb4d670d8f scripts/glibcelf.py: Mark as UNSUPPORTED on Python 3.5 and earlier adds 10fe3cd309 elf: Fix DFS sorting algorithm for LD_TRACE_LOADED_OBJECTS w [...] adds ef87599348 linux: Fix missing internal 64 bit time_t stat usage adds 14b1e32a4d i386: Regenerate ulps adds 7d96aa2d7d linux: Fix fchmodat with AT_SYMLINK_NOFOLLOW for 64 bit time [...] adds dde291ab53 posix/glob.c: update from gnulib
No new revisions were added by this update.
Summary of changes: INSTALL | 6 + NEWS | 17 +- configure | 65 +- configure.ac | 55 +- debug/tst-fortify.c | 5 + dlfcn/dladdr.c | 2 +- dlfcn/dladdr1.c | 2 +- dlfcn/dlclose.c | 2 +- dlfcn/dlerror.c | 2 +- dlfcn/dlinfo.c | 2 +- dlfcn/dlmopen.c | 2 +- dlfcn/dlopen.c | 2 +- dlfcn/dlopenold.c | 2 +- dlfcn/dlsym.c | 2 +- dlfcn/dlvsym.c | 2 +- elf/Makefile | 108 +++ elf/dl-deps.c | 2 + elf/dl-find_object.c | 5 +- elf/dl-libc.c | 8 +- elf/dl-sort-maps.c | 4 +- elf/libtracemod1-1.c | 1 + elf/libtracemod2-1.c | 1 + elf/libtracemod3-1.c | 1 + elf/libtracemod4-1.c | 1 + elf/libtracemod5-1.c | 1 + dlfcn/dlclose.c => elf/tst-audit26.c | 30 +- elf/tst-auditmod26.c | 104 +++ elf/tst-glibc-hwcaps-cache.script | 6 + elf/tst-glibcelf.py | 260 ++++++ elf/tst-relro-symbols.py | 137 +++ elf/tst-trace1.exp | 4 + elf/tst-trace2.exp | 6 + elf/tst-trace3.exp | 6 + elf/tst-trace4.exp | 6 + elf/tst-trace5.exp | 6 + io/Makefile | 8 +- io/tst-lchmod-time64.c | 2 + io/tst-lchmod.c | 22 +- manual/install.texi | 6 + manual/process.texi | 3 +- misc/sys/cdefs.h | 12 +- nptl/allocatestack.c | 2 - nptl/cancellation.c | 50 +- nptl/cleanup_defer.c | 42 +- nptl/descr.h | 41 +- nptl/libc-cleanup.c | 39 +- nptl/pthread_cancel.c | 111 ++- nptl/pthread_join_common.c | 7 +- nptl/pthread_setcancelstate.c | 26 +- nptl/pthread_setcanceltype.c | 31 +- nptl/pthread_testcancel.c | 9 +- nss/nss_test_errno.c | 2 +- posix/glob.c | 70 +- scripts/glibcelf.py | 1141 +++++++++++++++++++++++ scripts/tst-ld-trace.py | 108 +++ sysdeps/i386/fpu/libm-test-ulps | 2 +- sysdeps/i386/i686/fpu/multiarch/libm-test-ulps | 2 +- sysdeps/m68k/dl-machine.h | 12 +- sysdeps/nptl/dl-tls_init_tp.c | 3 - sysdeps/nptl/pthreadP.h | 2 +- sysdeps/pthread/Makefile | 1 + sysdeps/pthread/tst-cancel29.c | 207 ++++ sysdeps/s390/dl-procinfo.c | 5 +- sysdeps/s390/dl-procinfo.h | 2 +- sysdeps/s390/s390-64/Makefile | 25 +- sysdeps/s390/s390-64/dl-hwcap-check.h | 6 +- sysdeps/s390/s390-64/dl-hwcaps-subdirs.c | 11 +- sysdeps/s390/s390-64/tst-glibc-hwcaps.c | 8 +- sysdeps/unix/sysv/linux/faccessat.c | 4 +- sysdeps/unix/sysv/linux/fchmodat.c | 4 +- sysdeps/unix/sysv/linux/glob64-time64.c | 1 + sysdeps/unix/sysv/linux/ia64/Makefile | 6 + sysdeps/unix/sysv/linux/mips/bits/struct_stat.h | 38 +- sysdeps/unix/sysv/linux/pathconf.c | 4 +- 74 files changed, 2633 insertions(+), 307 deletions(-) create mode 100644 elf/libtracemod1-1.c create mode 100644 elf/libtracemod2-1.c create mode 100644 elf/libtracemod3-1.c create mode 100644 elf/libtracemod4-1.c create mode 100644 elf/libtracemod5-1.c copy dlfcn/dlclose.c => elf/tst-audit26.c (58%) create mode 100644 elf/tst-auditmod26.c create mode 100644 elf/tst-glibcelf.py create mode 100644 elf/tst-relro-symbols.py create mode 100644 elf/tst-trace1.exp create mode 100644 elf/tst-trace2.exp create mode 100644 elf/tst-trace3.exp create mode 100644 elf/tst-trace4.exp create mode 100644 elf/tst-trace5.exp create mode 100644 io/tst-lchmod-time64.c create mode 100644 scripts/glibcelf.py create mode 100755 scripts/tst-ld-trace.py create mode 100644 sysdeps/pthread/tst-cancel29.c