2021-04-20 16:46:01 +08:00
|
|
|
What's new:
|
|
|
|
-----------
|
|
|
|
|
2021-07-16 12:49:57 +08:00
|
|
|
- An IP-sampling profiler named 'profiler' has been added. It can be used
|
|
|
|
to profile any Cygwin program along with any DLLs loaded.
|
|
|
|
|
|
|
|
- A new tool 'gmondump' has been added. It can dump the raw information
|
|
|
|
of any "gmon.out" file created by profiler, ssp, or use of the gcc/g++
|
|
|
|
option '-pg'. (Continue using gprof to get symbolic profile displays.)
|
|
|
|
|
2021-07-29 23:44:20 +08:00
|
|
|
- New GNU-specific APIs: pthread_cond_clockwait, pthread_mutex_clocklock,
|
|
|
|
pthread_rwlock_clockrdlock, pthread_rwlock_clockwrlock, sem_clockwait.
|
|
|
|
|
2021-04-20 16:46:01 +08:00
|
|
|
|
|
|
|
What changed:
|
|
|
|
-------------
|
|
|
|
|
2021-07-11 19:04:58 +08:00
|
|
|
- The speed argument to cfsetspeed(3) can now be a numerical baud rate
|
|
|
|
rather than a Bnnn constant, as on Linux.
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2021-July/248887.html
|
|
|
|
|
2021-04-20 16:46:01 +08:00
|
|
|
|
|
|
|
Bug Fixes
|
|
|
|
---------
|
|
|
|
|
|
|
|
- Fix values returned by select(2) for shutdown sockets.
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin-developers/2021-April/012092.html
|
|
|
|
|
2021-04-24 02:40:07 +08:00
|
|
|
- Introduce a new hypotl(3) function not suffering unnecessary overflows.
|
2021-04-20 16:46:01 +08:00
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2021-April/248302.html
|
|
|
|
|
|
|
|
- Fix path handling for paths spanning native symlinks.
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2021-April/248307.html
|
|
|
|
|
|
|
|
- Fix tab position evaluation after console window resize.
|
|
|
|
|
|
|
|
- Fix a regression in pseudo console handling, resulting in rlwrap not
|
|
|
|
being able to start a new pseudo console.
|
|
|
|
|
|
|
|
- Handle two race conditions in pseudo console usage.
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2021-April/248292.html
|
2021-04-24 02:40:07 +08:00
|
|
|
|
|
|
|
- Fix a bug in recognizing a successful completion of connect(2) on a
|
|
|
|
datagram socket.
|
2021-04-24 06:17:57 +08:00
|
|
|
|
|
|
|
- Fix connect(2) when called with an address structure whose family is
|
|
|
|
AF_UNSPEC. As specified by POSIX and Linux, this is allowed on
|
|
|
|
datagram sockets, and its effect is to reset the socket's peer
|
|
|
|
address.
|
2021-07-20 23:07:00 +08:00
|
|
|
|
|
|
|
- Fix nanosleep(2) returning negative rem. NtQueryTimer appears to be able to
|
|
|
|
return a negative remaining time (less than the timer resolution) for
|
|
|
|
unsignalled timers.
|
2021-07-28 19:44:25 +08:00
|
|
|
|
|
|
|
- Fix getifaddrs(3) returning address family 0 or IPv4 address 0.
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2021-July/248970.html
|
2021-07-30 18:43:26 +08:00
|
|
|
|
|
|
|
- Fix getaddrinfo(3) to return valid ai_socktype and ai_protocol values
|
|
|
|
if the underlying GetAddrInfoW screwes up.
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2021-July/248985.html
|