summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-09-15add crypt_md5 password hashRich Felker-2/+285
2012-09-15revert low rounds-count limits in crypt hashesRich Felker-4/+4
2012-09-15update mips cancellation-point syscall asm with 7-arg and r25 fixesRich Felker-2/+5
2012-09-14workaround gcc got-register-reload performance problems in mallocRich Felker-4/+8
2012-09-14use vfork if possible in posix_spawnRich Felker-1/+3
2012-09-10asm for memmove on i386 and x86_64Rich Felker-0/+36
2012-09-10fix another ppoll issue (missing sigset_t size argument)Rich Felker-1/+1
2012-09-10reenable word-at-at-time copying in memmoveRich Felker-4/+27
2012-09-10fix ppoll with null timeout argumentRich Felker-2/+2
2012-09-09add setdomainname syscall, fix getdomainname (previously a stub)Rich Felker-1/+17
2012-09-09mincore syscall wrapperRich Felker-0/+8
2012-09-09fix up lfs64 junk for preadv/pwritevRich Felker-2/+2
2012-09-09add preadv/pwritev syscall wrappersRich Felker-0/+26
2012-09-09add linux ppoll syscall wrapperRich Felker-0/+9
2012-09-09reenable sync_file_range; should no longer break on mipsRich Felker-2/+2
2012-09-09add 7-arg syscall support for mipsRich Felker-4/+8
2012-09-09fix mips syscall_cp_asm code (saved register usage)Rich Felker-2/+2
2012-09-09fix broken mips syscall asmRich Felker-2/+2
2012-09-08disable sync_file_range for nowRich Felker-2/+3
2012-09-08syscall organization overhaulRich Felker-5/+138
2012-09-08add acct syscall source file, omitted in last syscalls commitRich Felker-0/+9
2012-09-08add acct, accept4, setns, and dup3 syscalls (linux extensions)Rich Felker-0/+28
2012-09-08add linux tee syscallRich Felker-0/+8
2012-09-08add linux sync_file_range syscallRich Felker-0/+16
2012-09-08move fallocate syscall wrapper to linux-specific syscalls dirRich Felker-0/+0
2012-09-08add linux readahead syscallRich Felker-0/+8
2012-09-08add fallocate (nonstandardized) functionRich Felker-0/+9
2012-09-08fix broken fallocate syscall in posix_fallocateRich Felker-1/+1
2012-09-08add timerfd interfaces (untested)Rich Felker-0/+17
2012-09-07cleanup src/linux and src/misc trees, etc.Rich Felker-98/+74
2012-09-06fix constraint violation in ftwRich Felker-1/+4
2012-09-06further use of _Noreturn, for non-plain-C functionsRich Felker-10/+10
2012-09-06fix invalid implicit pointer conversion in gnulib-compat functionsRich Felker-1/+1
2012-09-06add _Noreturn function attribute, with fallback for pre-C11 GNUCRich Felker-4/+4
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-198/+199
2012-09-06remove dependency of wmemmove on wmemcpy directionRich Felker-4/+4
2012-09-06remove dependency of memmove on memcpy directionRich Felker-5/+4
2012-09-06fix broken ttyname[_r] (failure to null-terminate result)Rich Felker-1/+4
2012-08-30fix missing statics in crypt_sha256 codeRich Felker-3/+3
2012-08-29anti-DoS rounds count limits for blowfish and des cryptRich Felker-2/+2
2012-08-29limit sha512 rounds to similar runtime to sha256 limitRich Felker-1/+1
2012-08-29add sha256/sha512 cryptRich Felker-1/+700
2012-08-27fix bug caused by main app & libc having map set; cannot free themRich Felker-1/+1
2012-08-26dladdr support for dynamic linker (nonstandard extension)Rich Felker-0/+95
2012-08-25implement "low hanging fruit" from C11Rich Felker-49/+57
2012-08-25add c11 quick_exit and at_quick_exit functionsRich Felker-0/+44
2012-08-25fix bug in gnu hash lookup on dlsym(handle, name) lookupsRich Felker-1/+1
2012-08-25clean up search_vec usage for vdsoRich Felker-2/+2
2012-08-25use new search_vec function to find vdso in dynamic linkerRich Felker-4/+2
2012-08-25ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker-2/+6