release notes for 0.7.6 bugfix release
[musl] / src /
2011-04-04 Rich Felkerfix rare but nasty under-allocation bug in malloc with...
2011-04-04 Rich Felkersimplify vdprintf implementation greatly based on recen...
2011-04-04 Rich Felkeruse a local temp buffer for unbuffered streams in vfprintf
2011-04-03 Rich Felkerfix nl_langinfo to actually use the existing, correct...
2011-04-03 Rich Felkermake ualarm actually work (obsolete function removed...
2011-04-03 Rich Felkerfix various bugs in strtold:
2011-04-03 Rich Felkerfix serious bug in strchr - char signedness
2011-04-03 Rich Felkeradd setresuid/setresgid functions (nonstandard)
2011-04-03 Rich Felkerpthread_create need not set errno
2011-04-03 Rich Felkerfix statvfs syscalls (missing size argument)
2011-04-03 Rich Felkerblock all signals during rsyscall
2011-04-03 Rich Felkerfix race condition in rsyscall handler
2011-04-03 Rich Felkerdon't trust siginfo in rsyscall handler
2011-04-03 Rich Felkertimer threads should sleep and stay asleep... a long...
2011-04-03 Rich Felkerrevert to deleting kernel-level timer from cancellation...
2011-04-03 Rich Felkersimplify calling of timer signal handler
2011-04-03 Rich Felkersimplify pthread tsd key handling
2011-04-03 Rich Felkeromit pthread tsd dtor code if tsd is not used
2011-04-02 Rich Felkerdon't disable seeking after first seek failure
2011-04-02 Rich Felkerapparently fseek should not set the error flag on faile...
2011-04-02 Rich Felkeravoid over-allocation of brk on first malloc
2011-04-02 Rich Felkerreorganize the __libc structure for threaded performanc...
2011-04-02 Rich Felkersimplify setting result on thread cancellation
2011-04-02 Rich Felkeruse bss instead of mmap for main thread's pthread threa...
2011-04-02 Rich Felkerremove obsolete and useless useconds_t type
2011-04-02 Rich Felkerfix misspelled PTHREAD_CANCELED constant
2011-04-01 Rich Felkeruse a_store to set cancel flag in pthread_cancel, to...
2011-03-31 Rich Felkersimplify pthread_key_delete
2011-03-31 Rich Felkergreatly simplify pthread_key_create (~20% size reduction)
2011-03-30 Rich Felkeravoid all malloc/free in timer creation/destruction
2011-03-30 Rich Felkeroptimize timer creation and possibly protect against...
2011-03-30 Rich Felkeravoid crash on stupid but allowable usage of pthread_mu...
2011-03-30 Rich Felkerrename __simple_malloc.c to lite_malloc.c - yes this...
2011-03-30 Rich Felkerstreamline mutex unlock to remove a useless branch...
2011-03-30 Rich Felkercheap special-case optimization for normal mutexes
2011-03-30 Rich Felkerreorder timer initialization so that timer_create does...
2011-03-29 Rich Felkerrevert mutex "optimization" that turned out to be worse
2011-03-29 Rich Felkerimplement POSIX timers
2011-03-29 Rich Felkermajor improvements to cancellation handling
2011-03-29 Rich Felkersome preliminaries for adding POSIX timers
2011-03-29 Rich Felkerfix tempnam name generation, and a small bug in tmpnam...
2011-03-29 Rich Felkermake tmpfile fail after exceeding max tries.
2011-03-29 Rich Felkerfix tmpnam to generate better names, not depend on...
2011-03-29 Rich Felkerfix messed-up errno if remove fails for a non-EISDIR...
2011-03-29 Rich Felkerlearned something new - remove is supposed to support...
2011-03-29 Rich Felkerrevert some more spin optimizations that turned out...
2011-03-29 Rich Felkerfix broken spinlock due to miscompilation
2011-03-29 Rich Felkerremove useless field in pthread struct (wasted a good...
2011-03-28 Rich Felkerfix getc - the classic error of trying to store EOF...
2011-03-28 Rich Felkermajor stdio overhaul, using readv/writev, plus other...
2011-03-26 Rich Felkermatch glibc/lsb cancellation abi on i386
2011-03-25 Rich Felkerfix all implicit conversion between signed/unsigned...
2011-03-25 Rich Felkersimplify and optimize FILE lock handling
2011-03-25 Rich Felkerprepare pthread_spin_unlock for archs that need memory...
2011-03-25 Rich Felkeroptimize contended case for pthread_spin_trylock
2011-03-25 Rich Felkeroptimize spinlock spin
2011-03-25 Rich Felkerfix non-atomicity of puts
2011-03-24 Rich Felkeroverhaul cancellation to fix resource leaks and dangero...
2011-03-23 Rich Felkervery cheap double-free checks in malloc
2011-03-20 Rich Felkerglobal cleanup to use the new syscall interface
2011-03-20 Rich Felkerif returning errno value directly from a syscall, we...
2011-03-20 Rich Felkersyscall overhaul part two - unify public and internal...
2011-03-19 Rich Felkerremove comment cruft that got left behind in x86_64...
2011-03-19 Rich Felkeroverhaul syscall interface
2011-03-19 Rich Felkervarious legacy and linux-specific stuff
2011-03-18 Rich Felkerimplement [v]swprintf
2011-03-18 Rich Felkerimplement wprintf family of functions
2011-03-18 Rich Felkerfix broken wmemchr (unbounded search)
2011-03-18 Rich Felkerimplement robust mutexes
2011-03-17 Rich Felkeravoid function call to pthread_self in mutex unlock
2011-03-17 Rich Felkerreorder mutex struct fields to make room for pointers...
2011-03-17 Rich Felkerunify lock and owner fields of mutex structure
2011-03-17 Rich Felkeroptimize contended normal mutex case; add int compare...
2011-03-16 Rich Felkersimplify logic, slightly optimize contended case for...
2011-03-16 Rich Felkercorrect error returns for error-checking mutexes
2011-03-16 Rich Felkercut out a syscall on thread creation in the case where...
2011-03-16 Rich Felkerdon't expose EAGAIN, etc. from timed futex wait to...
2011-03-16 Rich Felkeroptimize file locking: avoid cache-polluting writes...
2011-03-14 Rich Felkerpartially-written draft of fmemopen, still in #if 0
2011-03-13 Rich Felkermisplaced & in times() made it fail to work, and clobbe...
2011-03-13 Rich Felkerimplement flockfile api, rework stdio locking
2011-03-11 Rich Felkerimplement dummy pthread_attr_[gs]etschedparam functions
2011-03-11 Rich Felkerfix pthread_attr_* implementations to match corrected...
2011-03-11 Rich Felkerfix failure behavior of sem_open when sem does not...
2011-03-11 Rich Felkerfix some semaphore wait semantics (race condition deadl...
2011-03-11 Rich Felkerfix sem_open and sem_close to obey posix semantics
2011-03-10 Rich Felkeroptimize pthread termination in the non-detached case
2011-03-10 Rich Felkerfix errors in sigqueue (potential information leak...
2011-03-10 Rich Felkersecurity fix: check that cancel/rsyscall signal was...
2011-03-10 Rich Felkermore cancellation points: tcdrain, clock_nanosleep
2011-03-10 Rich Felkerremove useless return value checks for functions that...
2011-03-10 Rich Felkermake sigsuspend a cancellation point
2011-03-10 Rich Felkermake sigtimedwait a cancellation point
2011-03-10 Rich Felkerdon't fail with EINTR in sigtimedwait
2011-03-10 Rich Felkerfix sigsuspend syscall
2011-03-10 Rich Felkermake sigaltstack work (missing macros in signal.h,...
2011-03-10 Rich Felkerfix errno behavior in clock_* functions
2011-03-10 Rich Felkerfix error handling for pthread_sigmask
2011-03-10 Rich Felkermake fork properly initialize the main thread in the...
2011-03-10 Rich Felkeroptimize pthread initialization
next