This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_eabi_stm32/gnu_eabi-master-arm_eabi-coremark-Os_LTO in repository toolchain/ci/newlib.
from 95a28b1f9 Cygwin: pty: Isolate CTRL_C_EVENTs between ptys. adds ec5ea6efa newlib: simplify header setup rules adds 28724b2f6 newlib: libc: move stdio multiplex logic from build to source files adds ed459780f libgloss: add a little build system generation documentation adds a531ad972 newlib: speed up targ-include setup & add error checking adds 644e8bba0 newlib: xstormy16: add missing string.h include new fbfea31dd Cygwin: pty: Avoid cutting the branch the pty master is sitting on. new 1e6c51d74 Cygwin: pty: Reorganize the code path of setting up and closi [...] new 3e11a002b Cygwin: sysconf: _SC_TZNAME_MAX: return -1 as valid value new aec053c60 Cygwin: pty: Rename some functions/variables with the name *pcon*. new 25937aa1d Cygwin: /proc/<PID>/status: fix format specifier new c78f14973 Cygwin: handle_sigprocmask: If new signal set is NULL, ignore "how" new 9551e617e Cygwin: Makefile: fix ctags --extras option new 05e7a60dd Cygwin: add init_cygheap::compute_sigblkmask method new 195169186 Cygwin: wait_sig: allow to compute process-wide mask of pendi [...] new 9a3c058f6 Cygwin: /proc/<PID>/status: Fill SigPnd, SigBlk and SigIgn va [...] new 3e4dd6cc4 Cygwin: update 3.4 release text
The 11 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: libgloss/doc/porting.texi | 50 +- newlib/Makefile.am | 90 +-- newlib/Makefile.in | 99 +--- newlib/libc/machine/xstormy16/tiny-malloc.c | 5 + newlib/libc/stdio/Makefile.am | 241 +------- newlib/libc/stdio/Makefile.in | 478 +++++++-------- newlib/libc/stdio/nano-svfprintf.c | 2 + newlib/libc/stdio/nano-svfscanf.c | 2 + .../spu/vfiprintf.c => stdio/svfiprintf.c} | 1 + .../{machine/spu/vfiscanf.c => stdio/svfiscanf.c} | 1 + newlib/libc/stdio/svfiwprintf.c | 3 + newlib/libc/stdio/svfiwscanf.c | 3 + .../{machine/spu/vfiprintf.c => stdio/svfprintf.c} | 2 +- .../{machine/spu/vfiscanf.c => stdio/svfscanf.c} | 2 +- newlib/libc/stdio/svfwprintf.c | 2 + newlib/libc/stdio/svfwscanf.c | 2 + newlib/libc/{machine/spu => stdio}/vfiprintf.c | 0 newlib/libc/{machine/spu => stdio}/vfiscanf.c | 0 newlib/libc/stdio/vfiwprintf.c | 2 + newlib/libc/stdio/vfiwscanf.c | 2 + winsup/cygwin/Makefile.am | 2 +- winsup/cygwin/cygheap.cc | 18 + winsup/cygwin/cygheap.h | 1 + winsup/cygwin/exceptions.cc | 3 + winsup/cygwin/fhandler.h | 22 +- winsup/cygwin/fhandler_process.cc | 15 +- winsup/cygwin/fhandler_termios.cc | 20 +- winsup/cygwin/fhandler_tty.cc | 640 +++++++++++---------- winsup/cygwin/pinfo.cc | 51 +- winsup/cygwin/pinfo.h | 18 +- winsup/cygwin/release/3.4.0 | 2 + winsup/cygwin/select.cc | 6 +- winsup/cygwin/signal.cc | 6 +- winsup/cygwin/sigproc.cc | 27 +- winsup/cygwin/sigproc.h | 3 +- winsup/cygwin/sysconf.cc | 2 +- winsup/cygwin/tty.cc | 26 +- winsup/cygwin/tty.h | 22 +- winsup/doc/new-features.xml | 4 + 39 files changed, 861 insertions(+), 1014 deletions(-) create mode 100644 newlib/libc/stdio/nano-svfprintf.c create mode 100644 newlib/libc/stdio/nano-svfscanf.c copy newlib/libc/{machine/spu/vfiprintf.c => stdio/svfiprintf.c} (68%) copy newlib/libc/{machine/spu/vfiscanf.c => stdio/svfiscanf.c} (67%) create mode 100644 newlib/libc/stdio/svfiwprintf.c create mode 100644 newlib/libc/stdio/svfiwscanf.c copy newlib/libc/{machine/spu/vfiprintf.c => stdio/svfprintf.c} (51%) copy newlib/libc/{machine/spu/vfiscanf.c => stdio/svfscanf.c} (50%) create mode 100644 newlib/libc/stdio/svfwprintf.c create mode 100644 newlib/libc/stdio/svfwscanf.c copy newlib/libc/{machine/spu => stdio}/vfiprintf.c (100%) copy newlib/libc/{machine/spu => stdio}/vfiscanf.c (100%) create mode 100644 newlib/libc/stdio/vfiwprintf.c create mode 100644 newlib/libc/stdio/vfiwscanf.c