summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2012-10-13workaround broken hidden-visibility handling in pccRich Felker1-1/+1
2012-10-13ensure pointer decay in inline-asm arg for i386 syscall6Rich Felker1-1/+1
2012-10-13fix namespace clash (libc) in dynlink.cRich Felker1-14/+13
2012-10-13remove dead code from dynamic linkerRich Felker1-10/+0
2012-10-11comment possibly-confusing i386 vsyscall asmRich Felker1-1/+13
2012-10-11avoid the thread-ptr-init behavior of sigaction when not installing handlerRich Felker1-1/+2
2012-10-11i386 vsyscall support (vdso-provided sysenter/syscall instruction based)Rich Felker4-82/+69
2012-10-08ensure that buffer for decoding auxv at startup is initially zeroRich Felker1-1/+1
2012-10-07clean up and refactor program initializationRich Felker6-34/+33
2012-10-07fix breakage due to initializing thread pointer when loading libsRich Felker1-1/+1
2012-10-06make new TLS setup block even implementation-internals signalsRich Felker1-2/+1
2012-10-06don't crash if TLS library is loaded into process with no thread pointerRich Felker1-0/+5
2012-10-06fix buggy TLS size/alignment computations in static-linked TLSRich Felker1-5/+22
2012-10-06fix symbol acceptance/rejection rules for TLSRich Felker1-8/+14
2012-10-06TLS fixes, mainly alignment handlingRich Felker1-39/+48
2012-10-05fix/improve shared library ctor/dtor handling, allow recursive dlopenRich Felker1-7/+29
2012-10-05small dynamic linker module search fixRich Felker1-1/+2
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker7-47/+115
2012-10-05fix race condition in dlopenRich Felker1-1/+3
2012-10-05fix incorrect TLS reloc macro names in x86_64 reloc.hRich Felker1-3/+3
2012-10-04dynamic-linked TLS support for everything but dlopen'd libsRich Felker6-43/+121
2012-10-04remove freeing of dynamic linker data when dlopen/dlsym are not usedRich Felker1-11/+0
2012-10-04beginnings of full TLS support in shared librariesRich Felker4-1/+19
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-10-03tell the assembler to mark all files as not requiring executable stackRich Felker1-0/+7
2012-09-30add getopt reset supportRich Felker3-3/+19
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-30define some _POSIX_* macros that were omitted; required for XSI conformanceRich Felker1-0/+3
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-29always expose accept4Rich Felker1-4/+1
2012-09-29always expose dup3 and pipe2Rich Felker1-2/+2
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 Felker45-0/+2213
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 Felker3-6/+4