Cygwin: add newgrp release notes
[newlib-cygwin.git] / winsup / cygwin / release / 1.7.17
blobc8442ee5d1dac16c1845f4736e00a972b5197852
1 What's new:
2 -----------
4 - Support the "e" flag to fopen(3).  This is a Glibc extension which
5   allows to fopen the file with the O_CLOEXEC flag set.
7 - Support the "x" flag to fopen(3).  This is a Glibc/C11 extension which
8   allows to open the file with the O_EXCL flag set.
11 Bug fixes:
12 ----------
14 - Prevent CTRL-S hang.
15   Fixes: http://cygwin.com/ml/cygwin/2012-10/threads.html#00089
17 - Revamp signals so that signals-to-threads more closely mimic Linux
18   operation.
19   First step of fix for: http://cygwin.com/ml/cygwin/2012-05/msg00186.html
20   as well as observed Linux behavior.
22 - Revert to only creating a new session leader when we know that a
23   console process is started in the background.
24   Should fix: http://cygwin.com/ml/cygwin/2012-08/threads.html#00062
26 - Fix mysterious crashes when accessing /etc.
27   Fixes: http://cygwin.com/ml/cygwin/2012-07/threads.html#00613 and others.
29 - Fix a potential race condition starting multiple "first" Cygwin processes
30   concurrently.
31   Should fix: http://cygwin.com/ml/cygwin/2012-07/msg00531.html
33 - Fix a bug in unlink/rmdir which could result in removing non-empty
34   directories on network drives.  Also fix problems trying to rename files
35   under newer Samba versions.
36   Fixes: http://cygwin.com/ml/cygwin/2012-07/threads.html#00477
38 - Prefer to call WSARecvMsg from recvmsg if possible.
39   Fixes: http://cygwin.com/ml/cygwin/2012-07/msg00662.html
41 - Correct hang typified by running "procps" after Cygwin has started a
42   Windows process.
43   Fixes: http://cygwin.com/ml/cygwin/2012-05/threads.html#00349