summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-10-07clean up and refactor program initializationRich Felker-34/+33
2012-10-07fix breakage due to initializing thread pointer when loading libsRich Felker-1/+1
2012-10-06make new TLS setup block even implementation-internals signalsRich Felker-2/+1
2012-10-06don't crash if TLS library is loaded into process with no thread pointerRich Felker-0/+5
2012-10-06fix buggy TLS size/alignment computations in static-linked TLSRich Felker-5/+22
2012-10-06fix symbol acceptance/rejection rules for TLSRich Felker-8/+14
2012-10-06TLS fixes, mainly alignment handlingRich Felker-39/+48
2012-10-05fix/improve shared library ctor/dtor handling, allow recursive dlopenRich Felker-7/+29
2012-10-05small dynamic linker module search fixRich Felker-1/+2
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker-47/+115
2012-10-05fix race condition in dlopenRich Felker-1/+3
2012-10-04dynamic-linked TLS support for everything but dlopen'd libsRich Felker-38/+58
2012-10-04remove freeing of dynamic linker data when dlopen/dlsym are not usedRich Felker-11/+0
2012-10-04beginnings of full TLS support in shared librariesRich Felker-1/+19
2012-10-04partial TLS support for dynamic-linked programsRich Felker-27/+77
2012-10-04TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker-14/+117
2012-09-30add getopt reset supportRich Felker-2/+18
2012-09-30protect sem_open against cancellationRich Felker-13/+19
2012-09-30overhaul sem_openRich Felker-108/+99
2012-09-30clean up, bugfixes, and general improvement for shm_open/shm_unlinkRich Felker-30/+28
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