aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-01-21release 1.1.21v1.1.21Rich Felker
2019-01-21fix call to __pthread_tsd_run_dtors with too many argumentsRich Felker
2019-01-19configure: accept ppc[64] as alias for powerpc[64] in gcc tuplesRich Felker
2019-01-16fix unintended linking dependency of pthread_key_create on __synccallRich Felker
2018-12-28halt getspnam[_r] search on error accessing TCB shadowRich Felker
2018-12-28don't set errno or return an error when getspnam[_r] finds no entryRich Felker
2018-12-19make sem_wait and sem_timedwait interruptible by signalsRich Felker
2018-12-18don't fail pthread_sigmask/sigprocmask on invalid how when set is nullRich Felker
2018-12-18add __timedwait backend workaround for old kernels where futex EINTRsRich Felker
2018-12-11on failed aio submission, set aiocb error and return valueRich Felker
2018-12-11don't create aio queue/map structures for invalid file descriptorsRich Felker
2018-12-11move aio queue allocation from io thread to submitting threadRich Felker
2018-12-09fix and future-proof against stack overflow in aio io threadsRich Felker
2018-12-09add namespace-safe version of getauxval for internal useRich Felker
2018-12-09add NT_VMCOREDD to elf.h from linux v4.18Szabolcs Nagy
2018-12-09add AT_MINSIGSTKSZ to elf.h from linux v4.18Szabolcs Nagy
2018-12-09add io_pgetevents and rseq syscall numbers from linux v4.18Szabolcs Nagy
2018-12-09add TRAP_UNK si_code to signal.h from linux v4.18Szabolcs Nagy
2018-12-09add SIGSYS support to sys/signalfd.h from linux v4.18Szabolcs Nagy
2018-12-09add AF_XDP to sys/socket.h from linux v4.18Szabolcs Nagy
2018-12-09update netinet/udp.h for linux v4.18Szabolcs Nagy
2018-12-09update netinet/tcp.h for linux v4.18Szabolcs Nagy
2018-12-09fix wordexp not to read past end of string ending with lone backslashRich Felker
2018-12-02fix memccpy to not access buffer past given sizeQuentin Rameau
2018-11-19fix regression in access to optopt objectRich Felker
2018-11-08optimize two-way strstr and memmem bad character shiftRich Felker
2018-11-02fix regression in setlocale for LC_ALL with per-category settingRich Felker
2018-11-02fix failure to flush stderr when fflush(0) is calledRich Felker
2018-11-02fix deadlock and buffered data loss race in fcloseRich Felker
2018-11-02__libc_start_main: slightly simplify stage2 pointer setupAlexander Monakov
2018-11-02remove commented-out debug printf from strstrRich Felker
2018-11-02fix spuriously slow check in twoway strstr/memmem coresRich Felker
2018-10-22don't omit setting errno in internal __map_file functionRich Felker
2018-10-22make the default locale (& a variant) failure-free cases for newlocaleRich Felker
2018-10-22simplify newlocale and allow failure for explicit locale namesRich Felker
2018-10-20remove volatile qualification from category pointers in __locale_structRich Felker
2018-10-20adapt setlocale to support possibility of failureRich Felker
2018-10-18adjust types in FILE struct to make line buffering check less expensiveRich Felker
2018-10-18optimize internal putc_unlocked macro used in putcRich Felker
2018-10-18fix wrong result for putc variants due to operator precedenceRich Felker
2018-10-18further optimize getc/putc when locking is neededRich Felker
2018-10-18use prototype for function pointer in static link libc init barrierRich Felker
2018-10-18fix error in constraints for static link libc init barrierRich Felker
2018-10-18fix build regression due to missing file for putc changesRich Felker
2018-10-18bypass indirection through pointer objects to access stdin/out/errRich Felker
2018-10-17optimize hot paths of putc with manual shrink-wrappingRich Felker
2018-10-17optimize hot paths of getc with manual shrink-wrappingRich Felker
2018-10-17document and make explicit desired noinline property for __init_libcRich Felker
2018-10-17impose barrier between thread pointer setup and use for static linkingRich Felker
2018-10-16make thread-pointer-loading asm non-volatileRich Felker