summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
2019-03-12make FILE a complete type for pre-C11 standard profilesRich Felker-0/+20
2019-03-10fix invalid-/double-/use-after-free in new dlopen ctor executionRich Felker-1/+2
2019-03-05don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARMRich Felker-1/+1
2019-03-03avoid malloc of ctor queue for programs with no external depsRich Felker-2/+9
2019-03-03avoid malloc of deps arrays for ldso and vdsoRich Felker-0/+3
2019-03-03avoid malloc of deps array for programs with no external depsRich Felker-3/+10
2019-03-03fix malloc misuse for startup ctor queue, breakage on fdpic archsRich Felker-5/+9
2019-03-03synchronize shared library dtor exec against concurrent loads/ctorsRich Felker-1/+17
2019-03-03overhaul shared library ctor execution for dependency order, concurrencyRich Felker-17/+101
2019-03-02record preloaded libraries as direct pseudo-dependencies of main appRich Felker-4/+11
2019-03-02fix unsafety of new ldso dep tracking in presence of malloc replacementRich Felker-1/+13
2019-02-27fix and overhaul dlsym depedency order, always record direct depsRich Felker-34/+79
2019-02-27fix crash/misbehavior from oob read in new dynamic tls installationRich Felker-1/+1
2019-02-25fix crash in new dynamic tls installation when last dep lacks tlsRich Felker-1/+4
2019-02-22add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker-35/+111
2019-02-22make thread list lock a recursive lockRich Felker-11/+21
2019-02-22fix loop logic cruft in dynamic tls installationRich Felker-1/+1
2019-02-20fix spurious undefined behavior in getaddrinfoRich Felker-3/+2
2019-02-20fix invalid free of partial addrinfo list with multiple servicesRich Felker-1/+1
2019-02-18install dynamic tls synchronously at dlopen, streamline accessRich Felker-160/+86
2019-02-17fix data race between new pthread_key_delete and dtor executionRich Felker-2/+4
2019-02-16introduce namespace-safe rwlock aliases; use in pthread_key_createRich Felker-20/+41
2019-02-16rewrite pthread_key_delete to use global thread listRich Felker-75/+19
2019-02-16rewrite __synccall in terms of global thread listRich Felker-124/+59
2019-02-15track all live threads in an AS-safe, fully-consistent linked listRich Felker-43/+94
2019-02-15always block signals for starting new threads, refactor start argsRich Felker-68/+56
2019-02-15for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfoRich Felker-21/+16
2019-02-15defer free of thread-local dlerror buffers from inconsistent contextRich Felker-2/+20
2019-02-13fix behavior of gets when input line contains a null byteRich Felker-3/+8
2019-02-12redesign robust mutex states to eliminate data races on type fieldRich Felker-12/+23
2019-02-07fail fdopendir for O_PATH file descriptorsRich Felker-0/+4
2019-02-07update line discipline constantsBobby Bingham-0/+12
2019-02-07move arch-invariant definitions out of bits/ioctl.hBobby Bingham-682/+98
2019-02-07locale: ensure dcngettext() preserves errnoA. Wilcox-0/+3
2019-01-21release 1.1.21v1.1.21Rich Felker-1/+53
2019-01-21fix call to __pthread_tsd_run_dtors with too many argumentsRich Felker-1/+1
2019-01-19configure: accept ppc[64] as alias for powerpc[64] in gcc tuplesRich Felker-2/+2
2019-01-16fix unintended linking dependency of pthread_key_create on __synccallRich Felker-0/+6
2018-12-28halt getspnam[_r] search on error accessing TCB shadowRich Felker-0/+2
2018-12-28don't set errno or return an error when getspnam[_r] finds no entryRich Felker-3/+9
2018-12-19make sem_wait and sem_timedwait interruptible by signalsRich Felker-1/+1
2018-12-18don't fail pthread_sigmask/sigprocmask on invalid how when set is nullRich Felker-1/+1
2018-12-18add __timedwait backend workaround for old kernels where futex EINTRsRich Felker-0/+15
2018-12-11on failed aio submission, set aiocb error and return valueRich Felker-2/+4
2018-12-11don't create aio queue/map structures for invalid file descriptorsRich Felker-4/+8
2018-12-11move aio queue allocation from io thread to submitting threadRich Felker-16/+21
2018-12-09fix and future-proof against stack overflow in aio io threadsRich Felker-1/+12
2018-12-09add namespace-safe version of getauxval for internal useRich Felker-1/+13
2018-12-09add NT_VMCOREDD to elf.h from linux v4.18Szabolcs Nagy-0/+1
2018-12-09add AT_MINSIGSTKSZ to elf.h from linux v4.18Szabolcs Nagy-0/+1