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