This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch main in repository newlib.
from 6e75829e1 Cygwin: posix.xml: Mark libacl functions correctly new 3754840d7 Cygwin: factor out find_fast_cwd_pointer to arch-specific file. new 2a35e0ca1 Cygwin: vendor libudis86 1.7.2/libudis86 new 85f5a86ce Cygwin: patch libudis86 to build as part of Cygwin new c23bcc8a9 Cygwin: use udis86 to find fast cwd pointer on x64 new 2c5f25035 Cygwin: add find_fast_cwd_pointer_aarch64.
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: winsup/cygwin/Makefile.am | 14 +- winsup/cygwin/aarch64/fastcwd.cc | 207 + winsup/cygwin/path.cc | 145 +- winsup/cygwin/udis86/decode.c | 1113 +++++ winsup/cygwin/udis86/decode.h | 195 + winsup/cygwin/udis86/extern.h | 109 + winsup/cygwin/udis86/itab.c | 8404 ++++++++++++++++++++++++++++++++++++++ winsup/cygwin/udis86/itab.h | 680 +++ winsup/cygwin/udis86/types.h | 260 ++ winsup/cygwin/udis86/udint.h | 91 + winsup/cygwin/udis86/udis86.c | 464 +++ winsup/cygwin/x86_64/fastcwd.cc | 200 + 12 files changed, 11759 insertions(+), 123 deletions(-) create mode 100644 winsup/cygwin/aarch64/fastcwd.cc create mode 100644 winsup/cygwin/udis86/decode.c create mode 100644 winsup/cygwin/udis86/decode.h create mode 100644 winsup/cygwin/udis86/extern.h create mode 100644 winsup/cygwin/udis86/itab.c create mode 100644 winsup/cygwin/udis86/itab.h create mode 100644 winsup/cygwin/udis86/types.h create mode 100644 winsup/cygwin/udis86/udint.h create mode 100644 winsup/cygwin/udis86/udis86.c create mode 100644 winsup/cygwin/x86_64/fastcwd.cc