diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-03-18 20:38:02 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-03-18 20:38:02 -0400 |
commit | 8c1c57a64b664340b0ede1c1f0eff8212b475ef5 (patch) | |
tree | 858e3bc54234b14ba07a11b99b07badfdb007b68 | |
parent | d5a5045382315e36588ca225889baa36ed0ed38f (diff) | |
download | musl-8c1c57a64b664340b0ede1c1f0eff8212b475ef5.tar.gz musl-8c1c57a64b664340b0ede1c1f0eff8212b475ef5.tar.xz musl-8c1c57a64b664340b0ede1c1f0eff8212b475ef5.zip |
release 1.1.7 v1.1.7
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | WHATSNEW | 43 |
2 files changed, 44 insertions, 1 deletions
diff --git a/VERSION b/VERSION index 0664a8fd..2bf1ca5f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.6 +1.1.7 diff --git a/WHATSNEW b/WHATSNEW index 6fa87652..812b3ac0 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -1410,3 +1410,46 @@ bugs fixed: arch-specific bugs fixed: - on or1k, some syscalls with 64-bit arguments were broken (misaligned) - usage of sahf instruction on x86_64 crashed on some early cpu models + + + +1.1.7 release notes + +new features: +- alternate passwd/group backend support via nscd protocol +- masked cancellation mode extension (experimental) +- aio cancellation +- aarch64 port (experimental) + +performance: +- significant memset asm optimizations on i386 and x86_64 + +compatibility: +- suppress EINTR in semaphores for old kernels where futex restart is broken +- always set optarg in getopt_long +- support SOCK_RAW socket type in getaddrinfo +- report success instead of EINPROGRESS when close is interrupted + +bugs fixed: +- multithreaded set*id() was not async-signal safe, had various race bugs +- getspnam_r returned results for partial username matches +- wordexp bad character checker mis-counted parentheses +- close on fd with pending aio could lead to file corruption +- old aio implementation had numerous conformance bugs +- malloc init code could deadlock due to race condition +- pthread_exit did not disable cancellation +- pthread_cond_wait could wrongly consume signal on cancellation +- execvp wrongly stopped path search on EACCESS +- fsync, fdatasync, and msync were not honored as cancellation points +- fchmodat was subject to fd leak race (missing O_CLOEXEC) +- fchmodat failed to report EOPNOTSUPP in race path +- passwd/group lookup functions had various minor error-reporting bugs +- isatty had false-positives/device-state-corruption for OSS sound devices +- configure script failed to detect gcc with translated messages +- FLT_ROUNDS macro failed to reflect rounding mode changes in fenv + +arch-specific bugs fixed: +- mips fesetenv did not handle FE_DFL_ENV +- mips POLLWRNORM and POLLWRBAND macros had wrong values +- x32 pthread synchronization object type definitions were wrong +- powerpc minimum signal stack size was insufficient |