This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 297635d Add build-many-glibcs.py option to strip installed shared libraries. new 23b5cae Add pretty printers for the NPTL lock types
The 1 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 | 45 +++ INSTALL | 27 ++ Makeconfig | 76 ++++- Makerules | 46 +++ NEWS | 5 + README.pretty-printers | 169 ++++++++++ Rules | 44 ++- manual/install.texi | 30 ++ nptl/Makefile | 18 + nptl/nptl-printers.py | 633 ++++++++++++++++++++++++++++++++++++ nptl/nptl_lock_constants.pysym | 75 +++++ nptl/test-cond-printers.c | 57 ++++ nptl/test-cond-printers.py | 50 +++ nptl/test-condattr-printers.c | 94 ++++++ nptl/test-condattr-printers.py | 71 ++++ nptl/test-mutex-printers.c | 151 +++++++++ nptl/test-mutex-printers.py | 97 ++++++ nptl/test-mutexattr-printers.c | 144 ++++++++ nptl/test-mutexattr-printers.py | 101 ++++++ nptl/test-rwlock-printers.c | 78 +++++ nptl/test-rwlock-printers.py | 64 ++++ nptl/test-rwlockattr-printers.c | 98 ++++++ nptl/test-rwlockattr-printers.py | 73 +++++ scripts/gen-py-const.awk | 118 +++++++ scripts/test_printers_common.py | 364 +++++++++++++++++++++ scripts/test_printers_exceptions.py | 61 ++++ 26 files changed, 2769 insertions(+), 20 deletions(-) create mode 100644 README.pretty-printers create mode 100644 nptl/nptl-printers.py create mode 100644 nptl/nptl_lock_constants.pysym create mode 100644 nptl/test-cond-printers.c create mode 100644 nptl/test-cond-printers.py create mode 100644 nptl/test-condattr-printers.c create mode 100644 nptl/test-condattr-printers.py create mode 100644 nptl/test-mutex-printers.c create mode 100644 nptl/test-mutex-printers.py create mode 100644 nptl/test-mutexattr-printers.c create mode 100644 nptl/test-mutexattr-printers.py create mode 100644 nptl/test-rwlock-printers.c create mode 100644 nptl/test-rwlock-printers.py create mode 100644 nptl/test-rwlockattr-printers.c create mode 100644 nptl/test-rwlockattr-printers.py create mode 100644 scripts/gen-py-const.awk create mode 100644 scripts/test_printers_common.py create mode 100644 scripts/test_printers_exceptions.py