about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* fix unsafety of new ldso dep tracking in presence of malloc replacementRich Felker2019-03-021-1/+13
* fix and overhaul dlsym depedency order, always record direct depsRich Felker2019-02-271-34/+79
* fix crash/misbehavior from oob read in new dynamic tls installationRich Felker2019-02-271-1/+1
* fix crash in new dynamic tls installation when last dep lacks tlsRich Felker2019-02-251-1/+4
* add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker2019-02-226-35/+111
* make thread list lock a recursive lockRich Felker2019-02-221-11/+21
* fix loop logic cruft in dynamic tls installationRich Felker2019-02-221-1/+1
* fix spurious undefined behavior in getaddrinfoRich Felker2019-02-201-3/+2
* fix invalid free of partial addrinfo list with multiple servicesRich Felker2019-02-201-1/+1
* install dynamic tls synchronously at dlopen, streamline accessRich Felker2019-02-189-160/+86
* fix data race between new pthread_key_delete and dtor executionRich Felker2019-02-171-2/+4
* introduce namespace-safe rwlock aliases; use in pthread_key_createRich Felker2019-02-169-20/+41
* rewrite pthread_key_delete to use global thread listRich Felker2019-02-162-75/+19
* rewrite __synccall in terms of global thread listRich Felker2019-02-163-124/+59
* track all live threads in an AS-safe, fully-consistent linked listRich Felker2019-02-157-43/+94
* always block signals for starting new threads, refactor start argsRich Felker2019-02-154-68/+56
* for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfoRich Felker2019-02-152-21/+16
* defer free of thread-local dlerror buffers from inconsistent contextRich Felker2019-02-151-2/+20
* fix behavior of gets when input line contains a null byteRich Felker2019-02-131-3/+8
* redesign robust mutex states to eliminate data races on type fieldRich Felker2019-02-124-12/+23
* fail fdopendir for O_PATH file descriptorsRich Felker2019-02-071-0/+4
* update line discipline constantsBobby Bingham2019-02-071-0/+12
* move arch-invariant definitions out of bits/ioctl.hBobby Bingham2019-02-078-682/+98
* locale: ensure dcngettext() preserves errnoA. Wilcox2019-02-071-0/+3
* release 1.1.21 v1.1.21Rich Felker2019-01-212-1/+53
* fix call to __pthread_tsd_run_dtors with too many argumentsRich Felker2019-01-211-1/+1
* configure: accept ppc[64] as alias for powerpc[64] in gcc tuplesRich Felker2019-01-191-2/+2
* fix unintended linking dependency of pthread_key_create on __synccallRich Felker2019-01-161-0/+6
* halt getspnam[_r] search on error accessing TCB shadowRich Felker2018-12-281-0/+2
* don't set errno or return an error when getspnam[_r] finds no entryRich Felker2018-12-282-3/+9
* make sem_wait and sem_timedwait interruptible by signalsRich Felker2018-12-191-1/+1
* don't fail pthread_sigmask/sigprocmask on invalid how when set is nullRich Felker2018-12-181-1/+1
* add __timedwait backend workaround for old kernels where futex EINTRsRich Felker2018-12-183-0/+15
* on failed aio submission, set aiocb error and return valueRich Felker2018-12-111-2/+4
* don't create aio queue/map structures for invalid file descriptorsRich Felker2018-12-111-4/+8
* move aio queue allocation from io thread to submitting threadRich Felker2018-12-111-16/+21
* fix and future-proof against stack overflow in aio io threadsRich Felker2018-12-091-1/+12
* add namespace-safe version of getauxval for internal useRich Felker2018-12-092-1/+13
* add NT_VMCOREDD to elf.h from linux v4.18Szabolcs Nagy2018-12-091-0/+1
* add AT_MINSIGSTKSZ to elf.h from linux v4.18Szabolcs Nagy2018-12-091-0/+1
* add io_pgetevents and rseq syscall numbers from linux v4.18Szabolcs Nagy2018-12-0913-0/+23
* add TRAP_UNK si_code to signal.h from linux v4.18Szabolcs Nagy2018-12-091-0/+1
* add SIGSYS support to sys/signalfd.h from linux v4.18Szabolcs Nagy2018-12-091-1/+5
* add AF_XDP to sys/socket.h from linux v4.18Szabolcs Nagy2018-12-091-1/+4
* update netinet/udp.h for linux v4.18Szabolcs Nagy2018-12-091-0/+3
* update netinet/tcp.h for linux v4.18Szabolcs Nagy2018-12-091-0/+18
* fix wordexp not to read past end of string ending with lone backslashRich Felker2018-12-091-1/+1
* fix memccpy to not access buffer past given sizeQuentin Rameau2018-12-021-1/+1
* fix regression in access to optopt objectRich Felker2018-11-191-0/+1
* optimize two-way strstr and memmem bad character shiftRich Felker2018-11-082-2/+2