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 c3479fb793 nsswitch: return result when nss database is locked [BZ #27343] adds 5ab25c8875 x86: Add PTWRITE feature detection [BZ #27346] new 5692abd13d tst: Provide test for timerfd related functions new e2c0794d13 tst: Provide test for ppoll new 7f61f785f1 sunrpc: Fix typo in xdr_string comment new e9fed2438a linux: Require /dev/shm as the shared memory file system new da4aea0b5e pthread: Refactor semaphore code new c1f46f9db7 pthread: Remove alloca usage from __sem_check_add_mapping
The 6 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: NEWS | 5 +- htl/Makefile | 3 +- htl/Versions | 1 - htl/semaphoreP.h | 21 --- {sysdeps/nptl => include}/shm-directory.h | 30 ++-- manual/platform.texi | 3 + nptl/Makefile | 3 +- nptl/Versions | 1 - nptl/nptlfreeres.c | 1 - nptl/pthreadP.h | 1 - nptl/semaphoreP.h | 21 --- posix/Makefile | 3 +- posix/Versions | 1 + {sysdeps/posix => posix}/shm-directory.c | 30 ++-- sunrpc/xdr.c | 2 +- sysdeps/htl/shm-directory.h | 30 ---- sysdeps/posix/Makefile | 6 - sysdeps/posix/shm-directory.h | 66 ------- sysdeps/posix/shm_open.c | 10 +- sysdeps/posix/shm_unlink.c | 13 +- sysdeps/pthread/sem_close.c | 56 +----- sysdeps/pthread/sem_open.c | 142 ++------------- sysdeps/pthread/sem_routines.c | 198 +++++++++++++++++++++ .../nldbl-roundeven.c => pthread/sem_routines.h} | 19 +- sysdeps/pthread/sem_unlink.c | 10 +- sysdeps/unix/sysv/linux/Makefile | 3 +- sysdeps/unix/sysv/linux/shm-directory.c | 147 --------------- .../unix/sysv/linux/tst-ppoll.c | 53 +++--- sysdeps/unix/sysv/linux/tst-timerfd.c | 65 +++++++ sysdeps/x86/Makefile | 7 +- sysdeps/x86/bits/platform/x86.h | 11 +- sysdeps/x86/cpu-features.c | 8 + sysdeps/x86/include/cpu-features.h | 17 +- sysdeps/x86/tst-cpu-features-cpuinfo-static.c | 1 + sysdeps/x86/tst-cpu-features-cpuinfo.c | 1 + sysdeps/x86/tst-cpu-features-supports-static.c | 1 + sysdeps/x86/tst-cpu-features-supports.c | 1 + sysdeps/x86/tst-get-cpu-features.c | 2 + 38 files changed, 447 insertions(+), 546 deletions(-) rename {sysdeps/nptl => include}/shm-directory.h (56%) rename {sysdeps/posix => posix}/shm-directory.c (60%) delete mode 100644 sysdeps/htl/shm-directory.h delete mode 100644 sysdeps/posix/shm-directory.h create mode 100644 sysdeps/pthread/sem_routines.c copy sysdeps/{ieee754/ldbl-opt/nldbl-roundeven.c => pthread/sem_routines.h} (76%) delete mode 100644 sysdeps/unix/sysv/linux/shm-directory.c copy elf/tst-prelink-cmp.c => sysdeps/unix/sysv/linux/tst-ppoll.c (53%) create mode 100644 sysdeps/unix/sysv/linux/tst-timerfd.c create mode 100644 sysdeps/x86/tst-cpu-features-cpuinfo-static.c create mode 100644 sysdeps/x86/tst-cpu-features-supports-static.c