musl
2011-05-08 Rich Felkeroverhaul implementation-internal signal protections
2011-05-07 Rich Felkerreduce some ridiculously large spin counts
2011-05-07 Rich Felkerremove debug code that was missed in barrier commit
2011-05-07 Rich Felkercompletely new barrier implementation, addressing major...
2011-05-05 Rich Felkeradd SA_NOMASK alias for SA_NODEFER with _GNU_SOURCE
2011-05-02 Rich Felkerfix fclose return status logic, again
2011-05-02 Rich Felkerfix undefined call order in fclose, possible lost outpu...
2011-05-02 Rich Felkerworkaround for preprocessor bug in pcc
2011-05-02 Rich Felkerminor optimization in puts: use inline putc_unlocked...
2011-04-29 Rich Felkeravoid crashing when nel==0 is passed to qsort
2011-04-28 Rich Felkeruse compiler builtins for variadic macros when available
2011-04-27 Rich Felkercorrect variadic prototypes for execl* family
2011-04-27 Rich Felkerreplace heap sort with smoothsort implementation by...
2011-04-27 Rich Felkeradd word-sized ctz function to atomic.h
2011-04-26 Rich Felkerfunction signature fix: add const qualifier to mempcpy...
2011-04-26 Rich Felkertypo in prototype for mempcpy
2011-04-26 Rich Felkerprototype for mempcpy
2011-04-25 Rich Felkerfix bug in ipv6 parsing that prevented parsing a lone...
2011-04-25 Rich Felkeripv6 parsing code (formerly dummied-out)
2011-04-25 Rich Felkerfix 2 eof-related bugs in scanf
2011-04-23 Rich Felkerupdate release notes to new format, add more
2011-04-22 Rich Felkerfix initial stack alignment in new threads on x86_64
2011-04-22 Rich Felkerupdate release notes in prep for 0.7.9 release
2011-04-22 Rich Felkeromit errno update path for syscalls that cannot fail
2011-04-21 Rich Felkerfix bogus return values for inet_pton
2011-04-21 Rich Felkermove wait.h macros out of bits. they do not vary.
2011-04-21 Rich Felkerinclude signal.h to avoid thorny __sigcontext/sigcontex...
2011-04-21 Rich Felkerfix minor bugs due to incorrect threaded-predicate...
2011-04-21 Rich Felkerworkaround bug in linux dup2
2011-04-21 Rich Felkerproperly create new session/controlling terminal in...
2011-04-21 Rich Felkerimplement (nonstandard) forkpty
2011-04-21 Rich Felkerdisallow blank strings as service or host name
2011-04-21 Rich Felkerfix bugs in ipv4 parsing
2011-04-20 Rich Felkerfix initgroups (uninitialized count passed to getgrouplist)
2011-04-20 Rich Felkershadow password fixes: empty fields should read as...
2011-04-20 Rich Felkernamespace fixes for sys/mman.h
2011-04-20 Rich Felkerfix missing include in posix_madvise.c (compile error)
2011-04-20 Rich Felkersupport posix_madvise (previous a stub)
2011-04-20 Rich Felkeradd syscall wrappers for posix_fadvise, posix_fallocate
2011-04-20 Rich Felkerblock cancellation in wordexp, handle more errors
2011-04-20 Rich Felkeravoid malloc of potentially-large string in wordexp
2011-04-20 Rich Felkermove some more code out of pthread_create.c
2011-04-19 Rich Felkerfix uninitialized waiters field in semaphores
2011-04-19 Rich Felkerdns lookups: protect against cancellation and fix incor...
2011-04-19 Rich Felkeravoid fd leak if opendir is cancelled when calloc has...
2011-04-19 Rich Felkerprotect ftw and nftw against cancellation
2011-04-19 Rich Felkerprotect syslog against cancellation
2011-04-19 Rich Felkerrecheck cancellation disabled flag after syscall return...
2011-04-18 Rich Felkerremove bogus extra logic for close cancellability
2011-04-17 Rich Felkerfix typo in x86_64 cancellable syscall asm
2011-04-17 Rich Felkerminimal realpath implementation using /proc
2011-04-17 Rich Felkerpthread_exit is not supposed to affect cancellability
2011-04-17 Rich Felkerfix pthread_exit from cancellation handler
2011-04-17 Rich Felkerclean up handling of thread/nothread mode, locking
2011-04-17 Rich Felkerdebloat: use __syscall instead of syscall where possible
2011-04-17 Rich Felkerfix bugs in cancellable syscall asm
2011-04-17 Rich Felkeroptimize cancellation enable/disable code
2011-04-17 Rich Felkerdon't use pthread_once when there is no danger in race
2011-04-17 Rich Felkerfix some minor issues in cancellation handling patch
2011-04-17 Rich Felkeroverhaul pthread cancellation
2011-04-15 Rich Felkerremove stupid debug code in wordexp
2011-04-15 Rich Felkerimplement wordexp. first try, may be buggy. intended...
2011-04-15 Rich Felkeravoid setting errno when checking for tty
2011-04-15 Rich Felkerdocument some changes in the upcoming release
2011-04-15 Rich Felkerfix O_SYNC definition, cleanup fcntl.h
2011-04-15 Rich Felkerfix FAPPEND typo on x86_64 (previously only fixed on...
2011-04-15 Rich Felkerfcntl.h: move macros that do not vary between archs...
2011-04-15 Rich Felkerfix broken fcntl locks on x86_64
2011-04-15 Rich Felkermake tmpfile slightly more efficient (use unlink syscal...
2011-04-14 Rich Felkerfix typo in legacy FAPPEND definition
2011-04-14 Rich Felkeradd useless type fd_mask. it's in the reserved namespace.
2011-04-14 Rich Felkerchange sem_trywait algorithm so it never has to call...
2011-04-14 Rich Felkercheap trick to further optimize locking normal mutexes
2011-04-14 Rich Felkeruse a separate signal from SIGCANCEL for SIGEV_THREAD...
2011-04-14 Rich Felkersimplify cancellation point handling
2011-04-13 Rich Felkersimplify syslog, add vsyslog interface (nonstandard)
2011-04-13 Rich Felkerremove useless SIGPIPE protection from syslog
2011-04-13 Rich Felkerfix syslog (corrected SIGPIPE blocking, and using dgram...
2011-04-13 Rich Felkernumerous fixes to sysv ipc
2011-04-13 Rich Felkeradd syslog.h cruft for syslogd to use...
2011-04-13 Rich Felkeradd profile for getmntent_r
2011-04-13 Rich Felkeradd syscall wrapper for flock
2011-04-13 Rich Felkerfix bug whereby getopt_long allowed mismatch in last...
2011-04-13 Rich Felkerfix typos on RLIM_NLIMITS, remove _GNU_SOURCE test...
2011-04-13 Rich Felkerfix and cleanup suseconds_t/timeval stuff (broken on...
2011-04-13 Rich Felkerimplement getgrouplist (for initgroups), formerly dummi...
2011-04-13 Rich Felkerfix prototypes/signature for setgroups, etc.
2011-04-13 Rich Felkerfix incorrect GNU sighandler_t typedef
2011-04-13 Rich Felkerimplement memrchr (nonstandard) and optimize strrchr...
2011-04-13 Rich Felkeradd ptsname_r (nonstandard) and split ptsname (standard...
2011-04-12 Rich Felkerspeed up threaded fork
2011-04-12 Rich Felkermore changes for upcoming 0.7.8
2011-04-12 Rich Felkeroptimize ntohl etc. in terms of bswap functions
2011-04-12 Rich Felkermove bswap functions to static inline in byteswap.h
2011-04-12 Rich Felkerfix broken bswap_32
2011-04-12 Rich Felkerutmpx.h is no longer under standards, so expose ut_exit...
2011-04-12 Rich Felkeradd some traditional aliases to stat.h
2011-04-12 Rich Felkerfix printf("%.9g", 1.1) and similar not dropping traili...
2011-04-12 Rich Felkeradd missing rlimit macros
2011-04-11 Rich Felkermore types cleanup
next