This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from 5eaa64f9d Cygwin: timers: use spinlock to prime hires_ns thread-safe new 0b868df14 Cygwin: pthread_cond_timedwait: make sure to wait until absti [...] new 6df301076 Cygwin: timers: clock_setres: make no-op new f4d6ef2d4 time.h: Introduce Linux-specific CLOCK id values new c05df0272 Cygwin: implement extensible clock interface new 3cbb70f89 Cygwin: document latest changes
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: newlib/libc/include/time.h | 22 ++- winsup/cygwin/Makefile.in | 1 + winsup/cygwin/aio.cc | 5 +- winsup/cygwin/autoload.cc | 8 + winsup/cygwin/clock.cc | 286 +++++++++++++++++++++++++++++++++ winsup/cygwin/clock.h | 149 +++++++++++++++++ winsup/cygwin/cygheap.h | 2 +- winsup/cygwin/fhandler_socket_unix.cc | 6 +- winsup/cygwin/hires.h | 64 -------- winsup/cygwin/include/cygwin/version.h | 10 +- winsup/cygwin/ntdll.h | 3 +- winsup/cygwin/release/2.12.0 | 24 +++ winsup/cygwin/sched.cc | 2 +- winsup/cygwin/select.cc | 4 +- winsup/cygwin/signal.cc | 23 ++- winsup/cygwin/strace.cc | 10 +- winsup/cygwin/sysconf.cc | 2 +- winsup/cygwin/thread.cc | 36 +++-- winsup/cygwin/timer.cc | 13 +- winsup/cygwin/times.cc | 256 ++++------------------------- winsup/cygwin/wincap.cc | 12 ++ winsup/cygwin/wincap.h | 4 + winsup/doc/new-features.xml | 22 +++ 23 files changed, 621 insertions(+), 343 deletions(-) create mode 100644 winsup/cygwin/clock.cc create mode 100644 winsup/cygwin/clock.h delete mode 100644 winsup/cygwin/hires.h create mode 100644 winsup/cygwin/release/2.12.0