This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch zack/testsuite-isomac in repository glibc.
discards 73c2dc5 _ISOMAC-in-testsuite fixes. omits 3e90b1e Suppress internal declarations for most of the testsuite. omits 8272bda Miscellaneous 'safe' testsuite changes. omits 8baa3eb Narrowing the visibility of libc-internal.h even further. adds d42eed4 sunrpc: Avoid use-after-free read access in clntudp_call [BZ #21115] adds b31737b Refer to <signal.h> instead of <pthread.h> in <bits/sigthread.h> adds 37fb019 sunrpc: Do not unregister services if not registered [BZ #5010] adds cf0bd2f sunrpc: Improvements for UDP client timeout handling [BZ #20257] adds d2583c0 Add scripts/backport-support.sh new f28264c Miscellaneous low-risk changes preparing for _ISOMAC testsuite. new 58144d7 Remove _IO_MTSAFE_IO from public headers. new fa74d3a Narrowing the visibility of libc-internal.h even further. new 908e48f Suppress internal declarations for most of the testsuite.
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 (73c2dc5) \ N -- N -- N refs/heads/zack/testsuite-isomac (908e48f)
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 | 52 +++++ bits/sigthread.h | 2 +- inet/Makefile | 9 +- inet/deadline.c | 122 ++++++++++++ inet/net-internal.h | 89 +++++++++ inet/tst-deadline.c | 188 ++++++++++++++++++ scripts/backport-support.sh | 110 +++++++++++ sunrpc/Makefile | 12 +- sunrpc/clnt_udp.c | 129 +++++++------ sunrpc/svc.c | 14 +- sunrpc/tst-svc_register.c | 299 +++++++++++++++++++++++++++++ sunrpc/tst-udp-error.c | 62 ++++++ sunrpc/tst-udp-garbage.c | 104 ++++++++++ sunrpc/tst-udp-nonblocking.c | 333 ++++++++++++++++++++++++++++++++ sunrpc/tst-udp-timeout.c | 402 +++++++++++++++++++++++++++++++++++++++ sysdeps/pthread/bits/sigthread.h | 2 +- 16 files changed, 1857 insertions(+), 72 deletions(-) create mode 100644 inet/deadline.c create mode 100644 inet/tst-deadline.c create mode 100644 scripts/backport-support.sh create mode 100644 sunrpc/tst-svc_register.c create mode 100644 sunrpc/tst-udp-error.c create mode 100644 sunrpc/tst-udp-garbage.c create mode 100644 sunrpc/tst-udp-nonblocking.c create mode 100644 sunrpc/tst-udp-timeout.c