summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-09-29more close-on-exec fixes, mostly using new "e" flag to fopenRich Felker-9/+9
2012-09-29add 'e' modifier (close-on-exec) to fopen and fdopenRich Felker-2/+5
2012-09-29fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker-7/+5
2012-09-29move accept4, dup3, and pipe2 to non-linux-specific locationsRich Felker-0/+0
2012-09-29emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernelsRich Felker-3/+15
2012-09-29sem_open should make process-shared semaphoresRich Felker-1/+1
2012-09-29use O_CLOEXEC to open semaphore files in sem_openRich Felker-2/+2
2012-09-29fix some indention-with-spaces that crept inRich Felker-9/+9
2012-09-29microblaze portRich Felker-0/+188
2012-09-27fix arm clone syscall bug (no effect unless app uses clone)Rich Felker-2/+1
2012-09-27optimize strchrnul/strcspn not to scan string twice on no-matchRich Felker-25/+29
2012-09-27slightly cleaner strlen, also seems to compile to better codeRich Felker-6/+4
2012-09-26fix dirname to handle input of form "foo/" correctlyRich Felker-6/+5
2012-09-24fix handling of EINTR during close()Rich Felker-1/+4
2012-09-22fix getaddrinfo to accept port 0 (zero)Rich Felker-2/+2
2012-09-22fix remaining IPC_64 issue (shmctl)Rich Felker-4/+2
2012-09-22fix IPC_64 in msgctl tooRich Felker-6/+2
2012-09-22fix broken semctl on systems that don't use IPC_64 flagRich Felker-2/+6
2012-09-21LFS64 alias for prlimitRich Felker-0/+3
2012-09-16add clock_adjtime, remap_file_pages, and syncfs syscall wrappersRich Felker-0/+25
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