X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=WHATSNEW;h=55817aa962b02b1c48cdffb186cba56d02223c16;hp=519b77871a992f4db0320a9cd577c9a0f2d0f490;hb=d1c24ac4ec721ea49c15b277eaebed30f8df1e4c;hpb=9f50b77d2ba154ba0d8cbccea94af1f7b902fd1a diff --git a/WHATSNEW b/WHATSNEW index 519b7787..55817aa9 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -70,3 +70,38 @@ improved musl-gcc compiler wrapper. implemented many small missing functions here and there, minor header fixes, etc. + + + +0.7.1 - improvements to completeness, bug fixes + +implemented flockfile, wprintf, and robust mutex functions. + +fixed stack corruption bug in times(), minor header bugs, and some +error return value bugs in thread interfaces. + + + +0.7.5 - new features, major optimization, and robustness + +implemented POSIX timers. + +optimized and simplified many thread-related functions. + +eliminated resource leak races in thread cancellation. (almost all +existing implementations, including glibc, have these leaks.) + +overhauled stdio implementation to take advantage of readv/writev for +reduced syscall load, and improved stdio's handling of error status. + +added syscall header and interface for applications to use and +greatly simplified internal system for making syscalls. + +strangthened tmpnam/tempnam/tmpfile filename generation and made the +straight C functions not depend on POSIX symbols. + +fixed pthread cancellation ABI on i386 to match the LSB/glibc ABI + +better double-free handling in malloc + +various minor bug fixes