This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch azanella/bz23960 in repository glibc.
discards 2a73dbb0c0 linux: Use getdents64 on readdir64 compat implementation discards 8bd86fb8bf linux: Add __old_readdir64_unlocked discards 3ff85f6578 linux: Add __readdir64_unlocked discards 7c4f353cd9 linux: Set internal DIR filepos as off64_t [BZ #23960, BZ #24050] discards bf75a21f54 linux: Use getdents64 on non-LFS readdir discards 3c323eb3c4 linux: Use internal DIR locks when accessing filepos on telldir discards bc08d27a4d linux: Add __readdir_unlocked discards e84a7ef34d linux: Simplify opendir buffer allocation discards 8d7d1c1d28 linux: Move posix dir implementations to Linux adds df76ff3a44 x32: Properly pass long to syscall [BZ #25810] adds 2102bec982 hurd: add mach_print function adds 00515ea3a1 linux: wait4: Fix incorrect return value comparison adds c4d4419433 posix: Add wait4 test case adds 076f09afba Linux: Remove <sys/sysctl.h> and the sysctl function adds 70dfcd9b6c Fix typo in posix/tst-fnmatch.input (Bug 25790) adds c580e6466d Reset converter state after second wchar_t output (Bug 25734) new 2ad5e67e68 linux: Move posix dir implementations to Linux new 94d07bf65f linux: Simplify opendir buffer allocation new 0b8dd86596 linux: Add __readdir_unlocked new c460299108 linux: Use internal DIR locks when accessing filepos on telldir new cfd1ac0f6c linux: Use getdents64 on non-LFS readdir new 09a880c8bf linux: Set internal DIR filepos as off64_t [BZ #23960, BZ #24050] new a90a7bafa7 linux: Add __readdir64_unlocked new 55040a9030 linux: Add __old_readdir64_unlocked new c8c5403c9f linux: Use getdents64 on readdir64 compat implementation new aeb11324a5 dirent: Deprecate getdirentries
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 (2a73dbb0c0) \ N -- N -- N refs/heads/azanella/bz23960 (aeb11324a5)
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 10 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: NEWS | 9 +- dirent/dirent.h | 7 +- iconvdata/Makefile | 17 +- iconvdata/big5hkscs.c | 3 + iconvdata/tst-iconv-big5-hkscs-to-2ucs4.c | 160 ++++++++++++++++ include/sys/sysctl.h | 3 - mach/Versions | 3 + manual/sysinfo.texi | 144 -------------- posix/Makefile | 3 +- posix/tst-fnmatch.input | 2 +- posix/tst-wait4.c | 209 +++++++++++++++++++++ scripts/check-installed-headers.sh | 5 - sysdeps/mach/hurd/i386/libc.abilist | 1 + sysdeps/unix/sysv/linux/Makefile | 8 +- sysdeps/unix/sysv/linux/Versions | 2 + sysdeps/unix/sysv/linux/bits/sysctl.h | 1 - sysdeps/unix/sysv/linux/generic/sysctl.c | 32 ---- .../sysv/linux/microblaze/sysctl.c} | 17 +- .../sysv/linux/powerpc/powerpc64/le/sysctl.c} | 17 +- sysdeps/unix/sysv/linux/readdir.h | 4 +- sysdeps/unix/sysv/linux/sys/sysctl.h | 76 -------- sysdeps/unix/sysv/linux/sysctl.c | 35 ++-- sysdeps/unix/sysv/linux/sysctl.mk | 3 - sysdeps/unix/sysv/linux/wait4.c | 19 +- sysdeps/unix/sysv/linux/x86/bits/sysctl.h | 20 -- sysdeps/unix/sysv/linux/x86_64/sysdep.h | 15 +- sysdeps/unix/sysv/linux/x86_64/x32/sysctl.c | 2 + sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk | 1 - sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h | 16 ++ 29 files changed, 479 insertions(+), 355 deletions(-) create mode 100644 iconvdata/tst-iconv-big5-hkscs-to-2ucs4.c delete mode 100644 include/sys/sysctl.h create mode 100644 posix/tst-wait4.c delete mode 100644 sysdeps/unix/sysv/linux/bits/sysctl.h delete mode 100644 sysdeps/unix/sysv/linux/generic/sysctl.c copy sysdeps/{generic/unwind-arch.h => unix/sysv/linux/microblaze/sysctl.c} (71%) copy sysdeps/{generic/unwind-arch.h => unix/sysv/linux/powerpc/powerpc64/le/sysctl [...] delete mode 100644 sysdeps/unix/sysv/linux/sys/sysctl.h delete mode 100644 sysdeps/unix/sysv/linux/sysctl.mk delete mode 100644 sysdeps/unix/sysv/linux/x86/bits/sysctl.h create mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/sysctl.c delete mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk