This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from bbe989e resolv: Deprecate RES_BLAST new 67e58f3 Add framework for tunables new 9dd409a Initialize tunable list with the GLIBC_TUNABLES environment variable new 6765d5d Enhance --enable-tunables to select tunables frontend at build time new b31b4d6 User manual documentation for tunables new 7715d3a Add NEWS item for tunables
The 5 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 | 82 ++++ INSTALL | 21 + Makeconfig | 16 + NEWS | 5 + README.tunables | 85 ++++ config.h.in | 3 + config.make.in | 2 + configure | 17 + configure.ac | 10 + csu/init-first.c | 2 - csu/libc-start.c | 8 + elf/Makefile | 13 + elf/Versions | 3 + elf/dl-support.c | 2 + elf/dl-sysdep.c | 4 + .../dl-tunable-types.h | 42 +- elf/dl-tunables.c | 457 +++++++++++++++++++++ elf/dl-tunables.h | 92 +++++ elf/dl-tunables.list | 69 ++++ elf/rtld.c | 2 + malloc/Makefile | 6 + malloc/arena.c | 54 +++ malloc/tst-malloc-usable-static-tunables.c | 1 + malloc/tst-malloc-usable-static.c | 1 + malloc/tst-malloc-usable-tunables.c | 1 + manual/Makefile | 3 +- manual/install.texi | 20 + manual/probes.texi | 2 +- manual/tunables.texi | 192 +++++++++ scripts/gen-tunables.awk | 157 +++++++ sysdeps/mach/hurd/dl-sysdep.c | 4 + 31 files changed, 1355 insertions(+), 21 deletions(-) create mode 100644 README.tunables copy math/test-fe-snans-always-signal.c => elf/dl-tunable-types.h (65%) create mode 100644 elf/dl-tunables.c create mode 100644 elf/dl-tunables.h create mode 100644 elf/dl-tunables.list create mode 100644 malloc/tst-malloc-usable-static-tunables.c create mode 100644 malloc/tst-malloc-usable-static.c create mode 100644 malloc/tst-malloc-usable-tunables.c create mode 100644 manual/tunables.texi create mode 100644 scripts/gen-tunables.awk