about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* 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
* optimize two-way strstr and memmem bad character shiftRich Felker2018-11-082-2/+2
* fix regression in setlocale for LC_ALL with per-category settingRich Felker2018-11-021-1/+1
* fix failure to flush stderr when fflush(0) is calledRich Felker2018-11-021-1/+4
* fix deadlock and buffered data loss race in fcloseRich Felker2018-11-021-13/+19
* __libc_start_main: slightly simplify stage2 pointer setupAlexander Monakov2018-11-021-3/+4
* remove commented-out debug printf from strstrRich Felker2018-11-021-1/+0
* fix spuriously slow check in twoway strstr/memmem coresRich Felker2018-11-022-2/+2
* don't omit setting errno in internal __map_file functionRich Felker2018-10-221-2/+2
* make the default locale (& a variant) failure-free cases for newlocaleRich Felker2018-10-221-1/+20
* simplify newlocale and allow failure for explicit locale namesRich Felker2018-10-221-23/+14
* remove volatile qualification from category pointers in __locale_structRich Felker2018-10-201-1/+1
* adapt setlocale to support possibility of failureRich Felker2018-10-202-12/+22
* adjust types in FILE struct to make line buffering check less expensiveRich Felker2018-10-181-4/+2
* optimize internal putc_unlocked macro used in putcRich Felker2018-10-181-1/+2
* fix wrong result for putc variants due to operator precedenceRich Felker2018-10-181-1/+1
* further optimize getc/putc when locking is neededRich Felker2018-10-182-10/+10
* use prototype for function pointer in static link libc init barrierRich Felker2018-10-181-1/+1
* fix error in constraints for static link libc init barrierRich Felker2018-10-181-1/+1
* fix build regression due to missing file for putc changesRich Felker2018-10-181-0/+22
* bypass indirection through pointer objects to access stdin/out/errRich Felker2018-10-184-9/+33
* optimize hot paths of putc with manual shrink-wrappingRich Felker2018-10-173-13/+8
* optimize hot paths of getc with manual shrink-wrappingRich Felker2018-10-174-15/+30
* document and make explicit desired noinline property for __init_libcRich Felker2018-10-171-0/+6
* impose barrier between thread pointer setup and use for static linkingRich Felker2018-10-171-0/+13
* move stdio locking MAYBE_WAITERS definition to stdio_impl.hRich Felker2018-10-163-4/+2
* x86_64: add single instruction fmaSzabolcs Nagy2018-10-154-0/+92
* arm: add single instruction fmaSzabolcs Nagy2018-10-152-0/+30
* powerpc: add single instruction fabs, fabsf, fma, fmaf, sqrt, sqrtfSzabolcs Nagy2018-10-156-0/+90
* s390x: add single instruction fma and fmafSzabolcs Nagy2018-10-152-0/+14
* allow escaped path-separator slashes in globRich Felker2018-10-131-11/+22
* rewrite core of the glob implementation for correctness & optimizationRich Felker2018-10-121-105/+112
* combine arch ABI's DTP_OFFSET into DTV pointersRich Felker2018-10-124-17/+17
* fix redundant computations of strlen in glob append functionRich Felker2018-10-111-2/+5
* fix invalid substitute of [1] for flexible array member in globRich Felker2018-10-111-2/+2
* fix fesetround error checkingSzabolcs Nagy2018-10-101-6/+5
* fix build regression on armhf in tlsdesc asmRich Felker2018-10-091-0/+1
* allow freeaddrinfo of arbitrary sublists of addrinfo listRich Felker2018-10-043-8/+25
* inline cp15 thread pointer load in arm dynamic TLSDESC asm when possibleRich Felker2018-10-011-0/+9
* add TLSDESC support for 32-bit armRich Felker2018-10-011-0/+62
* fix aliasing-based undefined behavior in string functionsRich Felker2018-09-268-19/+46
* optimize nop case of wmemmoveRich Felker2018-09-231-0/+1
* fix undefined pointer comparison in wmemmoveRich Felker2018-09-231-1/+2
* fix undefined pointer comparison in memmoveRich Felker2018-09-231-1/+1
* new tsearch implementationSzabolcs Nagy2018-09-207-213/+200
* fix getaddrinfo regression with AI_ADDRCONFIG on some configurationsRich Felker2018-09-191-1/+10
* support setting of default thread stack size via PT_GNU_STACK headerRich Felker2018-09-181-0/+5
* increase default thread stack/guard sizeRich Felker2018-09-181-2/+2
* limit the configurable default stack/guard size for threadsRich Felker2018-09-183-8/+15