This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from be4830b Define __USE_KERNEL_IPV6_DEFS macro for non-Linux kernels new 75a9e6a tile: only define __ASSUME_ALIGNED_REGISTER_PAIRS for 32-bit new 62ce266 Add pretty printers for the NPTL lock types
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 | 32 ++ Makeconfig | 14 +- Makerules | 46 ++ NEWS | 3 + Rules | 5 + nptl/Makefile | 1 + nptl/nptl-printers.py | 593 +++++++++++++++++++++++++ nptl/nptl_lock_constants.pysym | 75 ++++ 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/unix/sysv/linux/tile/kernel-features.h | 4 +- 25 files changed, 2446 insertions(+), 2 deletions(-) create mode 100644 nptl/nptl-printers.py create mode 100644 nptl/nptl_lock_constants.pysym 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