musl
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 Felkerhonor namespace for i386 syscall.h, even though it...
2011-03-20 Rich Felkerfix typo in x86_64 part of syscall overhaul
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 Felkeradd some ioctl stuff to sys/mount.h
2011-03-19 Rich Felkeroverhaul syscall interface
2011-03-19 Rich Felkersome linux headers useful from user apps.
2011-03-19 Rich Felkervarious legacy and linux-specific stuff
2011-03-18 Rich Felkerdocument changes for 0.7.1
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-14 Rich Felkerremove some old cruft from sys/types.h
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-13 Rich Felkerpthread.h needs clockid_t
2011-03-11 Rich Felkerdocument some additional important changes
2011-03-11 Rich Felkerupdate whatsnew file for release of 0.7.0
2011-03-11 Rich Felkermatch dimensions so we can use all slots without invoki...
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 missing ENOTSUP error code
2011-03-11 Rich Felkermissing const in some pthread_attr_* prototypes
2011-03-11 Rich Felkerformatting whatsnew file
2011-03-11 Rich Felkerlist major changes in preparation for release
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
2011-03-10 Rich Felkerfix race condition in raise - just mask signals
2011-03-10 Rich Felkerfix raise semantics with threads.
2011-03-08 Rich Felkerfix typos in dirent.h
2011-03-08 Rich Felkerfcntl.h should make availabel the mode constants from...
2011-03-08 Rich Felkersimplify and optimize pthread_mutex_trylock
2011-03-08 Rich Felkerrwlock trylock functions were wrongly returning EAGAIN...
2011-03-08 Rich Felkerfix major breakage in pthread_once (it was always deadl...
2011-03-08 Rich Felkerfix and optimize non-default-type mutex behavior
2011-03-08 Rich Felkerimplement pthread_mutexattr_[gs]etpshared functions
2011-03-08 Rich Felkerdisallow cpu time clocks as condattr clock values
2011-03-07 Rich Felkeradd macros for use with d_type extension field in dirent
2011-03-07 Rich Felkerfix off-by-one error in sem_(timed)wait (using old...
2011-03-07 Rich Felkeruse the selected clock from the condattr for pthread_co...
2011-03-07 Rich Felkeradd prototypes for pthread_condattr_* and pthread_rwloc...
2011-03-07 Rich Felkerimplement pthread_rwlockattr_* (essentially no-ops)
2011-03-07 Rich Felkerimplement pthread_condattr_* interfaces
2011-03-07 Rich Felkerreject invalid attribute settings
2011-03-07 Rich Felkerimplement barrier attribute functions (essentially...
2011-03-04 Rich Felkerenforce stack size min in pthread_attr_setstacksize
2011-03-04 Rich Felkerimplement POSIX semaphores
2011-03-03 Rich Felkerpreliminaries to adding POSIX semaphores
2011-03-03 Rich Felkeroptimize POSIX TSD for fast pthread_getspecific
2011-03-03 Rich Felkernamespace cleanup in sys/mman.h
2011-03-03 Rich Felkerimplement POSIX shared memory
2011-03-01 Rich Felkeruse -L/...../ -lgcc instead of /...../libgcc.a in musl...
2011-03-01 Rich Felkerdepends on settimeofday which needs _GNU_SOURCE feature...
2011-02-27 Rich Felkerimplement futimens and utimensat
2011-02-27 Rich Felkercleanup namespace in sys/time.h
2011-02-27 Rich Felkerimplement fexecve
2011-02-27 Rich Felkercleanup utf-8 multibyte code, use visibility if possible
2011-02-27 Rich Felkerfix missing prototype for strsignal
2011-02-24 Rich Felkervarious changes in preparation for dynamic linking...
2011-02-24 Rich Felkerapply feature test protection to memccpy
2011-02-24 Rich Felkeradd implementation of memccpy function
2011-02-24 Rich Felkerfix backwards conditional in stpncpy
2011-02-22 Rich Felkerrewind must clear the error indicator in addition to...
2011-02-22 Rich Felkerchange errno to static linkage (improves PIC code gener...
2011-02-22 Rich Felkercleanup comment cruft in startup code
next