This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from 5cdf8ade2 Cygwin: fix return value of symlink_info::check new 719224492 Cygwin: drop building modelibs new 9fbfccff7 Cygwin: move memory management sources into mm subdir new 56b7fd620 Cygwin: make check_invalid_virtual_addr a static inline function new 5851a633b Cygwin: make import_address a static inline function new afa711799 Cygwin: move __caller_return_address to mm/malloc_wrapper.cc new 86d212617 Cygwin: mm/malloc_wrapper.cc: fix a comment new 782ef5361 Cygwin: rename CygwinCreateThread to create_posix_thread new bf1d972d5 Cygwin: move POSIX semaphore API functions to posix_ipc.cc
The 8 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 | 44 +-- winsup/cygwin/create_posix_thread.cc | 362 +++++++++++++++++++ winsup/cygwin/cygtls.cc | 1 + winsup/cygwin/dcrt0.cc | 2 +- winsup/cygwin/local_includes/create_posix_thread.h | 21 ++ winsup/cygwin/local_includes/miscfuncs.h | 18 - winsup/cygwin/miscfuncs.cc | 394 --------------------- winsup/cygwin/{ => mm}/cygheap.cc | 0 winsup/cygwin/{ => mm}/heap.cc | 0 winsup/cygwin/{ => mm}/malloc.cc | 0 winsup/cygwin/{ => mm}/malloc_wrapper.cc | 50 ++- winsup/cygwin/{ => mm}/mmap.cc | 13 + winsup/cygwin/{ => mm}/mmap_alloc.cc | 0 winsup/cygwin/{ => mm}/shared.cc | 0 winsup/cygwin/posix_ipc.cc | 48 +++ winsup/cygwin/thread.cc | 56 +-- 16 files changed, 505 insertions(+), 504 deletions(-) create mode 100644 winsup/cygwin/create_posix_thread.cc create mode 100644 winsup/cygwin/local_includes/create_posix_thread.h rename winsup/cygwin/{ => mm}/cygheap.cc (100%) rename winsup/cygwin/{ => mm}/heap.cc (100%) rename winsup/cygwin/{ => mm}/malloc.cc (100%) rename winsup/cygwin/{ => mm}/malloc_wrapper.cc (79%) rename winsup/cygwin/{ => mm}/mmap.cc (99%) rename winsup/cygwin/{ => mm}/mmap_alloc.cc (100%) rename winsup/cygwin/{ => mm}/shared.cc (100%)