This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch zack/headers-cleanups in repository glibc.
discards e19ce6057b Remove __need_schedparam and __cpu_set_t_defined. discards 3ea6b40d44 Remove __need_IOV_MAX and __need_FOPEN_MAX. discards b943a9d487 Remove __need macros from stdio.h and wchar.h. discards 191d00b975 Remove __need macros from errno.h (__need_Emath, __need_error_t). adds 673cb072a4 getaddrinfo: Always allocate canonical name on the heap adds 2714c5f3c9 resolv: Tests for various versions of res_init adds ca4b396ebe posix: Add missing build flags for p{write,read}v2 adds 6257fcfd58 getaddrinfo: Fix localplt failure involving strdup adds 9c65eec494 Fix sigevent namespace (bug 21543). adds 3e6def237a manual: Provide consistent errno documentation. adds 808fd9e6fe x86: Update __x86_shared_non_temporal_threshold adds 363911ce13 getaddrinfo: Eliminate another strdup call new 648a326b7f Remove __need macros from errno.h (__need_Emath, __need_error_t). new 602fbbfa0d Remove __need macros from stdio.h and wchar.h. new d19f4a50e7 Remove __need_IOV_MAX and __need_FOPEN_MAX. new 396c225302 Remove __need_schedparam and __cpu_set_t_defined.
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 (e19ce6057b) \ N -- N -- N refs/heads/zack/headers-cleanups (396c225302)
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 4 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 | 73 ++++ manual/errno.texi | 66 ++-- manual/macros.texi | 1 + misc/Makefile | 4 + resolv/Makefile | 8 + resolv/tst-resolv-res_init-skeleton.c | 601 +++++++++++++++++++++++++++++ resolv/tst-resolv-res_init-thread.c | 20 + resolv/tst-resolv-res_init.c | 20 + scripts/make-errno-enum.sh | 4 +- signal/signal.h | 5 +- support/Makefile | 9 + support/capture_subprocess.h | 19 + support/namespace.h | 12 + support/support-xstat.c | 30 ++ support/support.h | 15 + support/support_can_chroot.c | 65 ++++ support/support_capture_subprocess_check.c | 67 ++++ support/support_isolate_in_subprocess.c | 38 ++ support/support_shared_allocate.c | 57 +++ support/support_write_file_string.c | 39 ++ support/xchroot.c | 28 ++ support/xmkdir.c | 28 ++ support/xopen.c | 30 ++ support/xunistd.h | 9 +- sysdeps/posix/getaddrinfo.c | 122 +++--- sysdeps/x86/cacheinfo.c | 6 +- 26 files changed, 1264 insertions(+), 112 deletions(-) create mode 100644 resolv/tst-resolv-res_init-skeleton.c create mode 100644 resolv/tst-resolv-res_init-thread.c create mode 100644 resolv/tst-resolv-res_init.c create mode 100644 support/support-xstat.c create mode 100644 support/support_can_chroot.c create mode 100644 support/support_capture_subprocess_check.c create mode 100644 support/support_isolate_in_subprocess.c create mode 100644 support/support_shared_allocate.c create mode 100644 support/support_write_file_string.c create mode 100644 support/xchroot.c create mode 100644 support/xmkdir.c create mode 100644 support/xopen.c