summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
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
2018-12-09add io_pgetevents and rseq syscall numbers from linux v4.18Szabolcs Nagy-0/+23
2018-12-09add TRAP_UNK si_code to signal.h from linux v4.18Szabolcs Nagy-0/+1
2018-12-09add SIGSYS support to sys/signalfd.h from linux v4.18Szabolcs Nagy-1/+5
2018-12-09add AF_XDP to sys/socket.h from linux v4.18Szabolcs Nagy-1/+4
2018-12-09update netinet/udp.h for linux v4.18Szabolcs Nagy-0/+3
2018-12-09update netinet/tcp.h for linux v4.18Szabolcs Nagy-0/+18
2018-12-09fix wordexp not to read past end of string ending with lone backslashRich Felker-1/+1
2018-12-02fix memccpy to not access buffer past given sizeQuentin Rameau-1/+1
2018-11-19fix regression in access to optopt objectRich Felker-0/+1
2018-11-08optimize two-way strstr and memmem bad character shiftRich Felker-2/+2
2018-11-02fix regression in setlocale for LC_ALL with per-category settingRich Felker-1/+1
2018-11-02fix failure to flush stderr when fflush(0) is calledRich Felker-1/+4
2018-11-02fix deadlock and buffered data loss race in fcloseRich Felker-13/+19
2018-11-02__libc_start_main: slightly simplify stage2 pointer setupAlexander Monakov-3/+4
2018-11-02remove commented-out debug printf from strstrRich Felker-1/+0
2018-11-02fix spuriously slow check in twoway strstr/memmem coresRich Felker-2/+2
2018-10-22don't omit setting errno in internal __map_file functionRich Felker-2/+2
2018-10-22make the default locale (& a variant) failure-free cases for newlocaleRich Felker-1/+20
2018-10-22simplify newlocale and allow failure for explicit locale namesRich Felker-23/+14
2018-10-20remove volatile qualification from category pointers in __locale_structRich Felker-1/+1
2018-10-20adapt setlocale to support possibility of failureRich Felker-12/+22
2018-10-18adjust types in FILE struct to make line buffering check less expensiveRich Felker-4/+2
2018-10-18optimize internal putc_unlocked macro used in putcRich Felker-1/+2
2018-10-18fix wrong result for putc variants due to operator precedenceRich Felker-1/+1
2018-10-18further optimize getc/putc when locking is neededRich Felker-10/+10
2018-10-18use prototype for function pointer in static link libc init barrierRich Felker-1/+1
2018-10-18fix error in constraints for static link libc init barrierRich Felker-1/+1
2018-10-18fix build regression due to missing file for putc changesRich Felker-0/+22
2018-10-18bypass indirection through pointer objects to access stdin/out/errRich Felker-9/+33
2018-10-17optimize hot paths of putc with manual shrink-wrappingRich Felker-13/+8
2018-10-17optimize hot paths of getc with manual shrink-wrappingRich Felker-15/+30
2018-10-17document and make explicit desired noinline property for __init_libcRich Felker-0/+6
2018-10-17impose barrier between thread pointer setup and use for static linkingRich Felker-0/+13
2018-10-16make thread-pointer-loading asm non-volatileRich Felker-19/+19
2018-10-16remove ancient clang workaround from powerpc pthread_arch.h asmRich Felker-5/+0
2018-10-16restore attribute((const)) to pthread_self and errno location declsRich Felker-0/+9
2018-10-16add new stage 2b to dynamic linker bootstrap for thread pointerRich Felker-10/+23
2018-10-16move stdio locking MAYBE_WAITERS definition to stdio_impl.hRich Felker-4/+2
2018-10-15fix misleading placement of statement on same line as for loop in ldsoRich Felker-1/+2
2018-10-15x86_64: add single instruction fmaSzabolcs Nagy-0/+92
2018-10-15arm: add single instruction fmaSzabolcs Nagy-0/+30
2018-10-15powerpc: add single instruction fabs, fabsf, fma, fmaf, sqrt, sqrtfSzabolcs Nagy-0/+90
2018-10-15s390x: add single instruction fma and fmafSzabolcs Nagy-0/+14
2018-10-13allow escaped path-separator slashes in globRich Felker-11/+22
2018-10-12rewrite core of the glob implementation for correctness & optimizationRich Felker-105/+112
2018-10-12fix dlsym of thread-local symbols on archs with DTP_OFFSET!=0Rich Felker-3/+3
2018-10-12combine arch ABI's DTP_OFFSET into DTV pointersRich Felker-31/+28