This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch siddhesh/tunables in repository glibc.
discards 6131d20 Initialize tunable list with the GLIBC_TUNABLES environment variable discards 7bc31c0 Add framework for tunables adds b6084a9 Treat STV_HIDDEN and STV_INTERNAL symbols as STB_LOCAL adds f175e37 localedata: id_ID: Februari instead of Pebruari [BZ #20316] adds 87523e9 m68k: suppress -Wframe-address warning adds 2918b0d nptl: Add more coverage in tst-cancel4 adds 30e4cc5 powerpc: Fix return code of strcasecmp for unaligned inputs adds 00068ce Bump up tst-malloc-thread-fail timeout from 20 to 30s adds 8321286 Make copies of cstdlib/cmath and use them [BZ #20314] adds 92777f3 hurd: Fix PTR_{,DE}MANGLE calls adds b95a6eb hppa: Update libm-test-ulps. adds dd8f8da S390: Use DT_JUMPREL in prelink undo code. adds f3ea66b New locale de_LI adds 318132f Add missing changelog part adds d3016ce Fix robust mutex daedlock [BZ #20263] adds eaee348 Add test case for bug 20263 adds d461c96 localedata: fix de_LI locale adds 6bcc7ce ppc: Fix modf (sNaN) for pre-POWER5+ CPU (bug 20240). adds be4830b Define __USE_KERNEL_IPV6_DEFS macro for non-Linux kernels adds 75a9e6a tile: only define __ASSUME_ALIGNED_REGISTER_PAIRS for 32-bit adds 62ce266 Add pretty printers for the NPTL lock types new 3d745d2 Add framework for tunables new e7794c8 Initialize tunable list with the GLIBC_TUNABLES environment variable
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (6131d20) \ N -- N -- N refs/heads/siddhesh/tunables (e7794c8)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 2 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 | 124 ++++ Makeconfig | 17 +- Makerules | 70 +++ NEWS | 3 + Rules | 5 + bits/in.h | 3 + elf/dl-addr.c | 1 + elf/dl-lookup.c | 4 + elf/dl-reloc.c | 3 +- elf/dl-tunable-types.h | 5 +- elf/dl-tunables.c | 42 +- elf/dl-tunables.h | 2 +- libio/iofopncook.c | 12 + libio/libioP.h | 2 + libio/vtables.c | 2 + localedata/ChangeLog | 15 + localedata/SUPPORTED | 1 + localedata/locales/de_LI | 98 +++ localedata/locales/id_ID | 4 +- malloc/Makefile | 8 +- malloc/arena.c | 2 +- malloc/tst-malloc-thread-fail.c | 2 +- ...tatic.c => tst-malloc-usable-static-tunables.c} | 0 ...sable-static.c => tst-malloc-usable-tunables.c} | 0 nptl/Makefile | 3 +- nptl/lowlevelrobustlock.c | 7 +- nptl/nptl-printers.py | 593 +++++++++++++++++ nptl/nptl_lock_constants.pysym | 75 +++ nptl/tst-cancel4-common.c | 12 +- nptl/tst-cancel4-common.h | 16 + nptl/tst-cancel4.c | 42 +- nptl/tst-robust10.c | 110 ++++ pretty-printers/Makefile | 82 +++ pretty-printers/README | 130 ++++ pretty-printers/test-condvar-attributes.c | 94 +++ pretty-printers/test-condvar-attributes.py | 60 ++ pretty-printers/test-condvar-printer.c | 57 ++ pretty-printers/test-condvar-printer.py | 45 ++ pretty-printers/test-mutex-attributes.c | 144 +++++ pretty-printers/test-mutex-attributes.py | 90 +++ pretty-printers/test-mutex-printer.c | 151 +++++ pretty-printers/test-mutex-printer.py | 92 +++ pretty-printers/test-rwlock-attributes.c | 98 +++ pretty-printers/test-rwlock-attributes.py | 62 ++ pretty-printers/test-rwlock-printer.c | 78 +++ pretty-printers/test-rwlock-printer.py | 59 ++ pretty-printers/test_common.py | 315 ++++++++++ scripts/gen-py-const.awk | 118 ++++ sysdeps/generic/ldsodefs.h | 13 + sysdeps/hppa/fpu/libm-test-ulps | 698 +++++++++++++-------- sysdeps/m68k/Makefile | 4 + .../powerpc32/power4/fpu/multiarch/Makefile | 5 + sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile | 5 + sysdeps/powerpc/powerpc64/power8/strcasecmp.S | 17 +- sysdeps/s390/linkmap.h | 4 +- sysdeps/s390/s390-32/dl-machine.h | 6 +- sysdeps/s390/s390-64/dl-machine.h | 6 +- sysdeps/unix/sysv/linux/tile/kernel-features.h | 4 +- 58 files changed, 3400 insertions(+), 320 deletions(-) create mode 100644 localedata/locales/de_LI copy malloc/{tst-malloc-usable-static.c => tst-malloc-usable-static-tunables.c} (100%) copy malloc/{tst-malloc-usable-static.c => tst-malloc-usable-tunables.c} (100%) create mode 100644 nptl/nptl-printers.py create mode 100644 nptl/nptl_lock_constants.pysym create mode 100644 nptl/tst-robust10.c create mode 100644 pretty-printers/Makefile create mode 100644 pretty-printers/README create mode 100644 pretty-printers/test-condvar-attributes.c create mode 100644 pretty-printers/test-condvar-attributes.py create mode 100644 pretty-printers/test-condvar-printer.c create mode 100644 pretty-printers/test-condvar-printer.py create mode 100644 pretty-printers/test-mutex-attributes.c create mode 100644 pretty-printers/test-mutex-attributes.py create mode 100644 pretty-printers/test-mutex-printer.c create mode 100644 pretty-printers/test-mutex-printer.py create mode 100644 pretty-printers/test-rwlock-attributes.c create mode 100644 pretty-printers/test-rwlock-attributes.py create mode 100644 pretty-printers/test-rwlock-printer.c create mode 100644 pretty-printers/test-rwlock-printer.py create mode 100644 pretty-printers/test_common.py create mode 100644 scripts/gen-py-const.awk