X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=WHATSNEW;h=55817aa962b02b1c48cdffb186cba56d02223c16;hp=d4b4a0f2a3aa10042356f50851819a7f9782dda5;hb=d1c24ac4ec721ea49c15b277eaebed30f8df1e4c;hpb=fc27b96c7d9b2c82679508a57ac998d773f14f08 diff --git a/WHATSNEW b/WHATSNEW index d4b4a0f2..55817aa9 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -79,3 +79,29 @@ 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