This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 09103e4025 Include sys/param.h in stdlib/gmp-impl.h instead of redefini [...] new 91b6eb1140 Add internal facility for dynamic array handling
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 | 37 +++ malloc/Makefile | 27 +- malloc/Versions | 8 + malloc/dynarray-skeleton.c | 499 +++++++++++++++++++++++++++++ malloc/dynarray.h | 176 +++++++++++ malloc/dynarray_at_failure.c | 31 ++ malloc/dynarray_emplace_enlarge.c | 69 +++++ malloc/dynarray_finalize.c | 62 ++++ malloc/dynarray_resize.c | 59 ++++ malloc/dynarray_resize_clear.c | 35 +++ malloc/tst-dynarray-at-fail.c | 125 ++++++++ malloc/tst-dynarray-fail.c | 418 +++++++++++++++++++++++++ malloc/tst-dynarray-shared.h | 77 +++++ malloc/tst-dynarray.c | 517 +++++++++++++++++++++++++++++++ support/Makefile | 4 + support/capture_subprocess.h | 42 +++ support/support_capture_subprocess.c | 108 +++++++ support/tst-support_capture_subprocess.c | 188 +++++++++++ support/xdup2.c | 28 ++ support/xpipe.c | 28 ++ support/xunistd.h | 2 + 21 files changed, 2538 insertions(+), 2 deletions(-) create mode 100644 malloc/dynarray-skeleton.c create mode 100644 malloc/dynarray.h create mode 100644 malloc/dynarray_at_failure.c create mode 100644 malloc/dynarray_emplace_enlarge.c create mode 100644 malloc/dynarray_finalize.c create mode 100644 malloc/dynarray_resize.c create mode 100644 malloc/dynarray_resize_clear.c create mode 100644 malloc/tst-dynarray-at-fail.c create mode 100644 malloc/tst-dynarray-fail.c create mode 100644 malloc/tst-dynarray-shared.h create mode 100644 malloc/tst-dynarray.c create mode 100644 support/capture_subprocess.h create mode 100644 support/support_capture_subprocess.c create mode 100644 support/tst-support_capture_subprocess.c create mode 100644 support/xdup2.c create mode 100644 support/xpipe.c