4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-29 18:40:25 +08:00

35 lines
1.2 KiB
Plaintext
Raw Normal View History

What's new:
-----------
- Introduce reading passwd/group entries directly from SAM/AD, thus allowing
to do without /etc/passwd and /etc/group files. Introduce /etc/nsswitch.conf
file to configure passwd/group handling.
- /proc/cygdrive as a symlink pointing to the current cygdrive prefix. This
can be utilized in scripts to access paths via cygdrive prefix, even if the
cygdrive prefix has been changed by the user.
2014-10-17 08:33:37 +00:00
- Extend /proc/partitions to print the windows mount points the device is
mounted on. This allows to recognize the underlying Windows devices of the
Cygwin raw device names.
- New API: quotactl, designed after the Linux/BSD function, but severly
restricted: Windows only supports user block quotas on NTFS, no group
quotas, no inode quotas, no time constraints.
What changed:
-------------
Bug Fixes
---------
2014-08-18 11:37:27 +00:00
- Don't hang in accept calls if socket is no listener. Set errno to EINVAL
instead. Don't hang in read/recv/recvfrom/recvmsg calls if socket is
connection oriented and not connected. Set errno to ENOTCONN instead.
- Don't claim serial line is a tty. Don't allow seeking on serial lines and
sockets. Set errno to ESPIPE instead.
Addresses: https://cygwin.com/ml/cygwin/2014-08/msg00319.html