This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 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 | 89 +++++++ benchtests/Makefile | 6 - benchtests/README | 7 +- benchtests/bench-timing.h | 44 +--- 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/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 +++++- .../unix/sysv/linux/sparc/sparc64/get_clockfreq.c | 250 ------------------ sysdeps/unix/sysv/linux/sysconf.c | 64 ++--- sysdeps/x86/hp-timing.h | 4 - 45 files changed, 402 insertions(+), 1419 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 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