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 in repository toolchain/ci/glibc.
from 56a731d4ad Avoid readline conflicts in pexpect adds 365f05c7a5 Fix implicit-fallthrough warnings in tst-setjmp.c. adds 8a11f97062 Remove qualifier from function return type in tst-svc_register.c. adds bc10e22c90 nptl: Fix invalid Systemtap probe in pthread_join [BZ #24211] adds e442e40de5 io: Consolidate lockf implementation new a198d37ade Move remaining nptl_db headers to sysdeps/nptl new ebd32784ce Add missing header wrappers under include/ new ad18dadec9 Add check for missing wrapper headers
The 3 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 | 71 +++++++++++ Makefile | 9 +- Rules | 11 +- include/ar.h | 1 + include/bits/mqueue2.h | 1 + include/bits/stdio.h | 1 + include/bits/stdio2.h | 1 + include/fstab.h | 1 + include/fts.h | 1 + include/lastlog.h | 1 + include/netinet/icmp6.h | 1 + include/netinet/igmp.h | 1 + include/netinet/ip6.h | 1 + include/re_comp.h | 1 + include/regexp.h | 1 + include/rpcsvc/bootparam.h | 1 + include/rpcsvc/yp_prot.h | 1 + include/sys/random.h | 1 + include/sys/stropts.h | 1 + include/sys/ttychars.h | 1 + include/sys/vfs.h | 1 + include/wait.h | 1 + io/Makefile | 2 +- io/lockf.c | 54 +++----- io/lockf64.c | 67 ++++------ io/tst-lockf.c | 138 +++++++++++++++++++++ nptl/descr.h | 2 +- nptl/pthread_join_common.c | 5 +- scripts/check-wrapper-headers.py | 113 +++++++++++++++++ setjmp/tst-setjmp.c | 2 +- sunrpc/tst-svc_register.c | 2 +- {nptl_db => sysdeps/nptl}/proc_service.h | 0 {nptl_db => sysdeps/nptl}/thread_db.h | 0 sysdeps/unix/sysv/linux/arm/lockf64.c | 1 - sysdeps/unix/sysv/linux/i386/lockf64.c | 70 ----------- 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/sparc32/lockf64.c | 1 - 42 files changed, 402 insertions(+), 171 deletions(-) create mode 100644 include/ar.h create mode 100644 include/bits/mqueue2.h create mode 100644 include/bits/stdio.h create mode 100644 include/bits/stdio2.h create mode 100644 include/fstab.h create mode 100644 include/fts.h create mode 100644 include/lastlog.h create mode 100644 include/netinet/icmp6.h create mode 100644 include/netinet/igmp.h create mode 100644 include/netinet/ip6.h create mode 100644 include/re_comp.h create mode 100644 include/regexp.h create mode 100644 include/rpcsvc/bootparam.h create mode 100644 include/rpcsvc/yp_prot.h create mode 100644 include/sys/random.h create mode 100644 include/sys/stropts.h create mode 100644 include/sys/ttychars.h create mode 100644 include/sys/vfs.h create mode 100644 include/wait.h create mode 100644 io/tst-lockf.c create mode 100644 scripts/check-wrapper-headers.py rename {nptl_db => sysdeps/nptl}/proc_service.h (100%) rename {nptl_db => sysdeps/nptl}/thread_db.h (100%) delete mode 100644 sysdeps/unix/sysv/linux/arm/lockf64.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