This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/llvm-master-arm-spec2k6-Os in repository toolchain/ci/glibc.
from 5abcddd794 Fix parentheses error in iconvconfig.c and ld-collate.c [BZ #24372] adds 1a7df49c92 S390: Add new hwcap values for new cpu architecture arch13. adds a899a5512f S390: Add configure check to detect support for arch13. adds 96fbb9a328 S390: Add arch13 memmove ifunc variant. adds 6f47401bd5 S390: Add arch13 strstr ifunc variant. adds 421749d693 S390: Add arch13 memmem ifunc variant. new 38cc11daa4 nptl: Remove pthread_clock_gettime pthread_clock_settime new 77b6f55347 linux: Assume clock_getres CLOCK_{PROCESS,THREAD}_CPUTIME_ID new 6e8ba7fd57 Remove __get_clockfreq new 359653aaac Do not use HP_TIMING_NOW for random bits new 1e372ded4f Refactor hp-timing rtld usage new 7621e38bf3 Add generic hp-timing support
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: ChangeLog | 146 +++++++++++ benchtests/Makefile | 6 - benchtests/README | 7 +- benchtests/bench-timing.h | 44 +--- config.h.in | 6 + elf/dl-support.c | 8 - elf/rtld.c | 283 ++++++++++----------- include/libc-internal.h | 3 - misc/bits/error-ldbl.h => include/random-bits.h | 29 ++- nptl/Makefile | 1 - nptl/allocatestack.c | 48 ---- nptl/descr.h | 5 +- nptl/nptl-init.c | 3 - nptl/pthreadP.h | 10 - nptl/pthread_clock_gettime.c | 67 ----- nptl/pthread_clock_settime.c | 54 ---- nptl/pthread_create.c | 7 - resolv/res_mkquery.c | 19 +- resolv/res_send.c | 12 +- rt/Makefile | 2 +- rt/get_clockfreq.c | 27 -- sysdeps/alpha/hp-timing.h | 18 +- sysdeps/generic/hp-timing-common.h | 8 +- sysdeps/generic/hp-timing.h | 30 ++- sysdeps/generic/ldsodefs.h | 5 - sysdeps/ia64/hp-timing.h | 4 - sysdeps/mach/hurd/dl-sysdep.c | 8 - sysdeps/nptl/fork.c | 8 - sysdeps/posix/clock_getres.c | 46 +--- sysdeps/posix/tempname.c | 40 +-- sysdeps/powerpc/powerpc32/power4/hp-timing.h | 4 - sysdeps/powerpc/powerpc64/hp-timing.h | 4 - sysdeps/s390/Makefile | 4 +- sysdeps/s390/configure | 71 ++++++ sysdeps/s390/configure.ac | 49 ++++ sysdeps/s390/dl-procinfo.c | 4 +- sysdeps/s390/dl-procinfo.h | 9 +- sysdeps/s390/ifunc-memcpy.h | 23 +- sysdeps/s390/ifunc-memmem.h | 28 +- sysdeps/s390/ifunc-strstr.h | 28 +- sysdeps/s390/memcpy-z900.S | 55 ++++ sysdeps/s390/memmem-arch13.S | 161 ++++++++++++ sysdeps/s390/memmem-vx.c | 4 +- sysdeps/s390/memmem.c | 8 +- sysdeps/s390/memmove.c | 16 +- sysdeps/s390/multiarch/ifunc-impl-list.c | 13 + sysdeps/s390/multiarch/ifunc-resolve.h | 5 + sysdeps/s390/strstr-arch13.S | 179 +++++++++++++ sysdeps/s390/strstr-vx.c | 4 +- sysdeps/s390/strstr.c | 8 +- sysdeps/sparc/sparc32/sparcv9/hp-timing.h | 2 - sysdeps/sparc/sparc64/hp-timing.h | 2 - sysdeps/unix/clock_gettime.c | 65 +---- sysdeps/unix/clock_nanosleep.c | 30 +-- sysdeps/unix/clock_settime.c | 61 +---- sysdeps/unix/sysv/linux/i386/get_clockfreq.c | 88 ------- sysdeps/unix/sysv/linux/ia64/get_clockfreq.c | 87 ------- sysdeps/unix/sysv/linux/ia64/has_cpuclock.c | 51 ---- sysdeps/unix/sysv/linux/ia64/sysconf.c | 30 --- sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c | 107 -------- .../unix/sysv/linux/powerpc/get_timebase_freq.c | 81 +++++- sysdeps/unix/sysv/linux/s390/bits/hwcap.h | 4 + .../unix/sysv/linux/sparc/sparc64/get_clockfreq.c | 250 ------------------ sysdeps/unix/sysv/linux/sysconf.c | 64 ++--- sysdeps/x86/hp-timing.h | 4 - 65 files changed, 1117 insertions(+), 1440 deletions(-) copy misc/bits/error-ldbl.h => include/random-bits.h (51%) delete mode 100644 nptl/pthread_clock_gettime.c delete mode 100644 nptl/pthread_clock_settime.c delete mode 100644 rt/get_clockfreq.c create mode 100644 sysdeps/s390/memmem-arch13.S create mode 100644 sysdeps/s390/strstr-arch13.S delete mode 100644 sysdeps/unix/sysv/linux/i386/get_clockfreq.c delete mode 100644 sysdeps/unix/sysv/linux/ia64/get_clockfreq.c delete mode 100644 sysdeps/unix/sysv/linux/ia64/has_cpuclock.c delete mode 100644 sysdeps/unix/sysv/linux/ia64/sysconf.c delete mode 100644 sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c delete mode 100644 sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c