- 855df69 move the GNU siginfo renaming so it doesn't lead to mismatching names by Rich Felker · 14 years ago
- 8668f03 fill in some missing siginfo stuff in signal.h by Rich Felker · 14 years ago
- 2b43ef8 make sys/param.h not depend on PATH_MAX and NAME_MAX by Rich Felker · 14 years ago
- 13e8459 workaround gcc bug 46926 by providing a dumb sincos implementation by Rich Felker · 14 years ago
- 98e0214 use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit code by Rich Felker · 14 years ago
- 5316d08 fix typo in wordexp.h (note that the function is still unimplemented) by Rich Felker · 14 years ago
- 4b1244a implement the remaining clock_* interfaces by Rich Felker · 14 years ago
- 19eb13b race condition fix: block all signals before decrementing thread count by Rich Felker · 14 years ago
- a49c119 prevent sigprocmask/pthread_sigmask from blocking implementation signals by Rich Felker · 14 years ago
- fb11b6b make pthread_exit run dtors for last thread, wait to decrement thread count by Rich Felker · 14 years ago
- 69ecbd0 make mktemp match the historic behavior, and update functions that use it by Rich Felker · 14 years ago
- 2e6239d fix major bug created from copying mkdtemp logic by Rich Felker · 14 years ago
- 095a5ae add syscall wrappers for inotify by Rich Felker · 14 years ago
- cc2a822 cleanup cruft left from when kernel and user time_t disagreed by Rich Felker · 14 years ago
- 52874c8 prototype wait3 and wait4 by Rich Felker · 14 years ago
- f3ef7a6 add missing WIFCONTINUED macro and improve WIFSIGNALED by Rich Felker · 14 years ago
- b386d81 prototypes for brk and sbrk by Rich Felker · 14 years ago
- ad2fe25 support the ugly and deprecated ucontext and sigcontext header stuff... by Rich Felker · 14 years ago
- e9417ff add pthread_atfork interface by Rich Felker · 14 years ago
- 446b420 major improvements to temp file name generator by Rich Felker · 14 years ago
- 3e9e301 reformat mkstemp like mkdtemp by Rich Felker · 14 years ago
- d5ca067 add portable lchown (trivial to support and a few ancient things want it..) by Rich Felker · 14 years ago
- 982a478 prepare WHATSNEW for release by Rich Felker · 14 years ago
- 6d33335 document in config.mak sample that x86_64 is supported by Rich Felker · 14 years ago
- d09d068 update WHATSNEW in preparation for release by Rich Felker · 14 years ago
- 127ab57 avoid deleting the lib/empty file by Rich Felker · 14 years ago
- e882756 reorganize pthread data structures and move the definitions to alltypes.h by Rich Felker · 14 years ago
- 4fd1595 new solution for empty lib dir (old one had some problems) by Rich Felker · 14 years ago
- a36164c improve Makefile handling of git checkouts with missing lib/ and config.mak by Rich Felker · 14 years ago
- 187fe29 make daemon try the operations that might fail before fork rather than after by Rich Felker · 14 years ago
- 19e35c5 daemon should check for failures and return -1 by Rich Felker · 14 years ago
- b24bc15 don't compare elements with themselves during qsort. by Rich Felker · 14 years ago
- 798a12e ucontext is no longer in the standard, so use gnu-friendly struct name by Rich Felker · 14 years ago
- 417dbe9 some gnu software wrongly uses "struct siginfo" instead of siginfo_t... by Rich Felker · 14 years ago
- 56b784d add to pthread.h: pthread_mutex_timedlock and sched.h, time.h by Rich Felker · 14 years ago
- 5cbd76c fix printf %n specifier - missing breaks had it clobbering memory by Rich Felker · 14 years ago
- e3657ba patch by njk, simplifies thread register initialization for x86_64 by Rich Felker · 14 years ago
- 22cd9ca patch from njk: make x86_64 __uniclone branchless. by Rich Felker · 14 years ago
- bad4812 fix compile failure: legacy cuserid needs to define feature test by Rich Felker · 14 years ago
- 571312d move stdio stuff that's not arch-specific out of bits by Rich Felker · 14 years ago
- 8894947 protect some limit constants with feature test macros on x86_64 by Rich Felker · 14 years ago
- f451462 fix the types of some integer constant limits in headers by Rich Felker · 14 years ago
- 6d36c20 fix missing EXIT_* in stdlib.h after header cleanup by Rich Felker · 14 years ago
- 1d72953 feature test support in unistd.h by Rich Felker · 14 years ago
- cda892d fix directory reading on x86_64 by Rich Felker · 14 years ago
- 26f3551 prototype for gnu strcasestr (currently a stub) by Rich Felker · 14 years ago
- c024819 fix x86_64 wrongly reporting itself as ILP32 instead of LP64 by Rich Felker · 14 years ago
- 62275f7 news for upcoming release by Rich Felker · 14 years ago
- 4e30249 fix another error from header cleanup, missing size_t in time.h by Rich Felker · 14 years ago
- 3eb9fea fix broken signal.h from header cleanup by Rich Felker · 14 years ago
- 0b9a1ed some docs fixes for x86_64 by Rich Felker · 14 years ago
- 9b235e8 remove standalone syscall cruft by Rich Felker · 14 years ago
- 44460c6 fix some type leakage (timer_t) from x86_64 commit by Rich Felker · 14 years ago
- 062354f Optimize x86_64 atomics to take advantage of 64-bitness. by Nicholas J. Kain · 14 years ago
- ebc4a17 Remove __syscall_lseek from x86_64 syscall.h. by Nicholas J. Kain · 14 years ago
- bb89bdd Update x86_64 bits to mirror (modulo platform differences) the latest changes by Nicholas J. Kain · 14 years ago
- 1e12632 Port musl to x86-64. One giant commit! by Nicholas J. Kain · 14 years ago
- c2afb74 yet another ugly legacy syscall rename... by Rich Felker · 14 years ago
- f7eb91e fix getrlimit handling on 32-bit systems, and ease porting to 64-bit by Rich Felker · 14 years ago
- 13a026b split off arch-specific stdarg.h stuff by Rich Felker · 14 years ago
- 03a2f3e cleanup socketcall syscall interface to ease porting to sane(r) archs by Rich Felker · 14 years ago
- cfe3731 finish moving 32-bit-specific junk out of source files. by Rich Felker · 14 years ago
- a5bf06c move arch-specific internal headers into place by Rich Felker · 14 years ago
- 7b2dd22 finish unifying thread register handling in preparation for porting by Rich Felker · 14 years ago
- 0b2006c begin unifying clone/thread management interface in preparation for porting by Rich Felker · 14 years ago
- 5966680 make pthread_create return EAGAIN on resource failure, as required by POSIX by Rich Felker · 14 years ago
- 1355fdc preparing build system to handle ports - step 1 by Rich Felker · 14 years ago
- 8f4865c add previously-missing ios646.h by Rich Felker · 14 years ago
- df6e3ec add WHATSNEW file for 0.5.9 release by Rich Felker · 14 years ago
- 976f42d guard against hard links to non-ordinary-files when reading tcb shadow by Rich Felker · 14 years ago
- ca1aa5b more header cleanup and conformance fixes - string.h by Rich Felker · 14 years ago
- 131b5be more header cleanup and conformance fixes - locale.h, time.h by Rich Felker · 14 years ago
- 1322cb8 header cleanup, conformance fixes - signals by Rich Felker · 14 years ago
- c316b28 update various bits headers for new linux additions by Rich Felker · 14 years ago
- 6fbf8bf another pointer signedness fix by Rich Felker · 14 years ago
- a8c17e6 fix some pointer signedness issues (this was invalid C) by Rich Felker · 14 years ago
- c247ebd more header fixes, minor warning fix by Rich Felker · 14 years ago
- 5377715 ensure standard functions mk[sd]temp don't depend on removed function mktemp by Rich Felker · 14 years ago
- c255e55 put confstr.c with the other conf functions by Rich Felker · 14 years ago
- e8362c8 major bugfix for sigset_t (it was mistakenly 1024 bytes instead of bits) by Rich Felker · 14 years ago
- 74eea62 extensive header cleanup for standards conformance & correctness by Rich Felker · 14 years ago
- 80695b1 begin namespace-cleanup of standard C headers by Rich Felker · 14 years ago
- 7fe308e use a more-correct integer type, and silence 64-bit warnings as a bonus by Rich Felker · 14 years ago
- 05ea045 explicitly release crt/* to the public domain by Rich Felker · 14 years ago
- a130d33 fixed missing cast in the non-i386 version of shmat (preparation for ports) by Rich Felker · 14 years ago
- f9d880d cleanup multibyte stuff to remove ugly casts, sanitize the ptr align casts by Rich Felker · 14 years ago
- 2cdfb7c cleaning up syscalls in preparation for x86_64 port by Rich Felker · 14 years ago
- 978ca01 syscall cleanup for umount2 by Rich Felker · 14 years ago
- a5dec11 use umount2 syscall for umount (new targets lack old 1-arg umount) by Rich Felker · 14 years ago
- 1a9a2ff reorganize thread exit code, make pthread_exit call cancellation handlers (pt2) by Rich Felker · 14 years ago
- 50e26f0 reorganize thread exit code, make pthread_exit call cancellation handlers by Rich Felker · 14 years ago
- f38c154 added missing O_NDELAY by Rich Felker · 14 years ago
- dc3776d fix previous commit that broke sigreturn. looks like the asm is needed. by Rich Felker · 14 years ago
- 6027201 ensure that musl is compiled as C99 code & XSI option is available in headers by Rich Felker · 14 years ago
- e1d8d25 fix omission that kept sa_restorer from being used by Rich Felker · 14 years ago
- 0bcbb53 ensure that the compiler doesn't try to reorder around atomic ops by Rich Felker · 14 years ago
- 0b44a03 initial check-in, version 0.5.0 by Rich Felker · 14 years ago