musl
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
2011-02-22 Rich Felkermake startup code PIE-compatible
2011-02-21 Rich Felkerremove sample utf-8 code that's not part of the standar...
2011-02-21 Rich Felkeruse an accessor function for __libc data pointer when...
2011-02-21 Rich Felkeravoid referencing address of extern function from vdprintf
2011-02-21 Rich Felkershave off 2 bytes from crt1.o _start
2011-02-20 Rich Felkercleanup asprintf stuff
2011-02-20 Rich Felkerprototypes for GNU asprintf/vasprintf
2011-02-20 Rich Felkerfix %n specifier, again. this time it was storing the...
2011-02-20 Rich Felkerinclude sys/sysmacros.h from sys/types.h when _GNU_SOUR...
2011-02-20 Rich Felkerfix typo in inotify structure
2011-02-20 Rich Felkermake malloc(0) return unique pointers rather than NULL
2011-02-20 Rich Felkerfix simple_malloc malloc(0) behavior not to return...
2011-02-20 Rich Felkerfix simple_malloc size restrictions
2011-02-20 Rich Felkerfix null pointer dereference introduced in last sigproc...
2011-02-20 Rich Felkermake real symbols for the legacy (nonstandardized)...
2011-02-20 Rich Felkerresolve some header namespace non-issues
2011-02-20 Rich Felkermove the GNU siginfo renaming so it doesn't lead to...
2011-02-20 Rich Felkerfill in some missing siginfo stuff in signal.h
2011-02-20 Rich Felkermake sys/param.h not depend on PATH_MAX and NAME_MAX
2011-02-19 Rich Felkerworkaround gcc bug 46926 by providing a dumb sincos...
2011-02-19 Rich Felkeruse rt_sigprocmask, not legacy sigprocmask, syscall...
2011-02-19 Rich Felkerfix typo in wordexp.h (note that the function is still...
2011-02-19 Rich Felkerimplement the remaining clock_* interfaces
2011-02-19 Rich Felkerrace condition fix: block all signals before decrementi...
2011-02-19 Rich Felkerprevent sigprocmask/pthread_sigmask from blocking imple...
2011-02-19 Rich Felkermake pthread_exit run dtors for last thread, wait to...
2011-02-19 Rich Felkermake mktemp match the historic behavior, and update...
2011-02-19 Rich Felkerfix major bug created from copying mkdtemp logic
2011-02-19 Rich Felkeradd syscall wrappers for inotify
2011-02-19 Rich Felkercleanup cruft left from when kernel and user time_t...
2011-02-19 Rich Felkerprototype wait3 and wait4
2011-02-19 Rich Felkeradd missing WIFCONTINUED macro and improve WIFSIGNALED
2011-02-19 Rich Felkerprototypes for brk and sbrk
2011-02-19 Rich Felkersupport the ugly and deprecated ucontext and sigcontext...
2011-02-19 Rich Felkeradd pthread_atfork interface
2011-02-18 Rich Felkermajor improvements to temp file name generator
2011-02-18 Rich Felkerreformat mkstemp like mkdtemp
2011-02-18 Rich Felkeradd portable lchown (trivial to support and a few ancie...
2011-02-18 Rich Felkerprepare WHATSNEW for release
2011-02-17 Rich Felkerdocument in config.mak sample that x86_64 is supported
2011-02-17 Rich Felkerupdate WHATSNEW in preparation for release
2011-02-17 Rich Felkeravoid deleting the lib/empty file
2011-02-17 Rich Felkerreorganize pthread data structures and move the definit...
2011-02-17 Rich Felkernew solution for empty lib dir (old one had some problems)
2011-02-17 Rich Felkerimprove Makefile handling of git checkouts with missing...
2011-02-17 Rich Felkermake daemon try the operations that might fail before...
2011-02-17 Rich Felkerdaemon should check for failures and return -1
2011-02-17 Rich Felkerdon't compare elements with themselves during qsort.
next