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