summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2012-10-04partial TLS support for dynamic-linked programsRich Felker2-27/+77
2012-10-04TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker6-14/+117
2012-09-30add getopt reset supportRich Felker2-2/+18
2012-09-30protect sem_open against cancellationRich Felker1-13/+19
2012-09-30overhaul sem_openRich Felker2-108/+99
2012-09-30clean up, bugfixes, and general improvement for shm_open/shm_unlinkRich Felker2-30/+28
2012-09-29more close-on-exec fixes, mostly using new "e" flag to fopenRich Felker8-9/+9
2012-09-29add 'e' modifier (close-on-exec) to fopen and fdopenRich Felker2-2/+5
2012-09-29fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker4-7/+5
2012-09-29move accept4, dup3, and pipe2 to non-linux-specific locationsRich Felker3-0/+0
2012-09-29emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernelsRich Felker2-3/+15
2012-09-29sem_open should make process-shared semaphoresRich Felker1-1/+1
2012-09-29use O_CLOEXEC to open semaphore files in sem_openRich Felker1-2/+2
2012-09-29fix some indention-with-spaces that crept inRich Felker4-9/+9
2012-09-29microblaze portRich Felker11-0/+188
2012-09-27fix arm clone syscall bug (no effect unless app uses clone)Rich Felker1-2/+1
2012-09-27optimize strchrnul/strcspn not to scan string twice on no-matchRich Felker3-25/+29
2012-09-27slightly cleaner strlen, also seems to compile to better codeRich Felker1-6/+4
2012-09-26fix dirname to handle input of form "foo/" correctlyRich Felker1-6/+5
2012-09-24fix handling of EINTR during close()Rich Felker1-1/+4
2012-09-22fix getaddrinfo to accept port 0 (zero)Rich Felker1-2/+2
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