fix powerpc sigsetjmp asm to match the new jmp_buf size/offsets
[musl] / src /
2012-10-05 Rich Felkerdynamic-linked TLS support for everything but dlopen...
2012-10-05 Rich Felkerremove freeing of dynamic linker data when dlopen/dlsym...
2012-10-05 Rich Felkerbeginnings of full TLS support in shared libraries
2012-10-05 Rich Felkerpartial TLS support for dynamic-linked programs
2012-10-04 Rich FelkerTLS (GNU/C11 thread-local storage) support for static...
2012-10-01 Rich Felkeradd getopt reset support
2012-09-30 Rich Felkerprotect sem_open against cancellation
2012-09-30 Rich Felkeroverhaul sem_open
2012-09-30 Rich Felkerclean up, bugfixes, and general improvement for shm_ope...
2012-09-29 Rich Felkermore close-on-exec fixes, mostly using new "e" flag...
2012-09-29 Rich Felkeradd 'e' modifier (close-on-exec) to fopen and fdopen
2012-09-29 Rich Felkerfix some more O_CLOEXEC/SOCK_CLOEXEC issues
2012-09-29 Rich Felkermove accept4, dup3, and pipe2 to non-linux-specific...
2012-09-29 Rich Felkeremulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre...
2012-09-29 Rich Felkersem_open should make process-shared semaphores
2012-09-29 Rich Felkeruse O_CLOEXEC to open semaphore files in sem_open
2012-09-29 Rich Felkerfix some indention-with-spaces that crept in
2012-09-29 Rich Felkermicroblaze port
2012-09-27 Rich Felkerfix arm clone syscall bug (no effect unless app uses...
2012-09-27 Rich Felkeroptimize strchrnul/strcspn not to scan string twice...
2012-09-27 Rich Felkerslightly cleaner strlen, also seems to compile to bette...
2012-09-26 Rich Felkerfix dirname to handle input of form "foo/" correctly
2012-09-25 Rich Felkerfix handling of EINTR during close()
2012-09-22 Rich Felkerfix getaddrinfo to accept port 0 (zero)
2012-09-22 Rich Felkerfix remaining IPC_64 issue (shmctl)
2012-09-22 Rich Felkerfix IPC_64 in msgctl too
2012-09-22 Rich Felkerfix broken semctl on systems that don't use IPC_64...
2012-09-21 Rich FelkerLFS64 alias for prlimit
2012-09-17 Rich Felkeradd clock_adjtime, remap_file_pages, and syncfs syscall...
2012-09-16 Rich Felkeradd crypt_md5 password hash
2012-09-15 Rich Felkerrevert low rounds-count limits in crypt hashes
2012-09-15 Rich Felkerupdate mips cancellation-point syscall asm with 7-arg...
2012-09-15 Rich Felkerworkaround gcc got-register-reload performance problems...
2012-09-14 Rich Felkeruse vfork if possible in posix_spawn
2012-09-10 Rich Felkerasm for memmove on i386 and x86_64
2012-09-10 Rich Felkerfix another ppoll issue (missing sigset_t size argument)
2012-09-10 Rich Felkerreenable word-at-at-time copying in memmove
2012-09-10 Rich Felkerfix ppoll with null timeout argument
2012-09-09 Rich Felkeradd setdomainname syscall, fix getdomainname (previousl...
2012-09-09 Rich Felkermincore syscall wrapper
2012-09-09 Rich Felkerfix up lfs64 junk for preadv/pwritev
2012-09-09 Rich Felkeradd preadv/pwritev syscall wrappers
2012-09-09 Rich Felkeradd linux ppoll syscall wrapper
2012-09-09 Rich Felkerreenable sync_file_range; should no longer break on...
2012-09-09 Rich Felkeradd 7-arg syscall support for mips
2012-09-09 Rich Felkerfix mips syscall_cp_asm code (saved register usage)
2012-09-09 Rich Felkerfix broken mips syscall asm
2012-09-09 Rich Felkerdisable sync_file_range for now
2012-09-09 Rich Felkersyscall organization overhaul
2012-09-09 Rich Felkeradd acct syscall source file, omitted in last syscalls...
2012-09-09 Rich Felkeradd acct, accept4, setns, and dup3 syscalls (linux...
2012-09-08 Rich Felkeradd linux tee syscall
2012-09-08 Rich Felkeradd linux sync_file_range syscall
2012-09-08 Rich Felkermove fallocate syscall wrapper to linux-specific syscal...
2012-09-08 Rich Felkeradd linux readahead syscall
2012-09-08 Rich Felkeradd fallocate (nonstandardized) function
2012-09-08 Rich Felkerfix broken fallocate syscall in posix_fallocate
2012-09-08 Rich Felkeradd timerfd interfaces (untested)
2012-09-07 Rich Felkercleanup src/linux and src/misc trees, etc.
2012-09-07 Rich Felkerfix constraint violation in ftw
2012-09-07 Rich Felkerfurther use of _Noreturn, for non-plain-C functions
2012-09-07 Rich Felkerfix invalid implicit pointer conversion in gnulib-compa...
2012-09-07 Rich Felkeradd _Noreturn function attribute, with fallback for...
2012-09-07 Rich Felkeruse restrict everywhere it's required by c99 and/or...
2012-09-07 Rich Felkerremove dependency of wmemmove on wmemcpy direction
2012-09-07 Rich Felkerremove dependency of memmove on memcpy direction
2012-09-07 Rich Felkerfix broken ttyname[_r] (failure to null-terminate result)
2012-08-30 Rich Felkerfix missing statics in crypt_sha256 code
2012-08-29 Rich Felkeranti-DoS rounds count limits for blowfish and des crypt
2012-08-29 Rich Felkerlimit sha512 rounds to similar runtime to sha256 limit
2012-08-29 Rich Felkeradd sha256/sha512 crypt
2012-08-27 Rich Felkerfix bug caused by main app & libc having map set; canno...
2012-08-27 Rich Felkerdladdr support for dynamic linker (nonstandard extension)
2012-08-26 Rich Felkerimplement "low hanging fruit" from C11
2012-08-26 Rich Felkeradd c11 quick_exit and at_quick_exit functions
2012-08-25 Rich Felkerfix bug in gnu hash lookup on dlsym(handle, name) lookups
2012-08-25 Rich Felkerclean up search_vec usage for vdso
2012-08-25 Rich Felkeruse new search_vec function to find vdso in dynamic...
2012-08-25 Rich Felkerensure canary is setup if stack-prot libs are dlopen...
2012-08-25 Rich Felkeradd gnu hash support in the dynamic linker
2012-08-23 Rich Felkeroptimize legacy ffs function
2012-08-20 Rich Felkerfix bug whereby most atexit-registered functions got...
2012-08-18 Rich Felkermake dynamic linker report all failures before exiting
2012-08-18 Rich Felkerfix bug computing argc when invoking ld-musl-mips.so...
2012-08-17 Rich Felkerfix extremely rare but dangerous race condition in...
2012-08-17 Rich Felkerfix float parsing logic for long decimal expansions
2012-08-16 Rich Felkerhandle null arguments to legacy bsd err.h functions
2012-08-15 Rich Felkeradd missing xattr functions
2012-08-14 Rich FelkerMerge remote-tracking branch 'nsz/bsd'
2012-08-14 Rich FelkerMerge remote-tracking branch 'nsz/exp'
2012-08-13 Rich Felkerremove significandl
2012-08-13 Rich Felkeradd significand[fl] math functions
2012-08-12 Rich Felkermemcpy asm for i386 and x86_64
2012-08-11 Rich Felkerremove unused but buggy code from strstr.c
2012-08-11 Rich Felkerremove buggy short-string wcsstr implementation; always...
2012-08-11 Rich Felkeradd bsd fgetln function
2012-08-11 Rich Felkerminor but worthwhile optimization in printf: avoid...
2012-08-11 Rich Felkertrivial optimization to printf: avoid wasted call frame
2012-08-10 Rich Felkeradd blowfish hash support to crypt
2012-08-10 Rich Felkerfix (hopefully) all hard-coded 8's for kernel sigset_t...
next