summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
2020-08-30fix i386 __set_thread_area fallbackRich Felker-0/+1
2020-08-30restore h_errno ABI compatibility with ancient binariesRich Felker-0/+4
2020-08-30clean up overinclusion in files using TIOCGWINSZRich Felker-3/+0
2020-08-30fix regression with applications that expect struct winsize in ioctl.hRich Felker-7/+5
2020-08-27configure: enable warnings by defaultRich Felker-2/+2
2020-08-27configure: use additive warnings instead of subtracting from -WallRich Felker-9/+15
2020-08-27configure: add further -Werror=... options to detected CFLAGSRich Felker-0/+4
2020-08-27remove redundant pthread struct members repeated for layout purposesRich Felker-18/+19
2020-08-27deduplicate __pthread_self thread pointer adjustment out of each archRich Felker-65/+65
2020-08-24deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSETRich Felker-21/+16
2020-08-24report res_query failures, including nxdomain/nodata, via h_errnoRich Felker-1/+15
2020-08-24make h_errno thread-localRich Felker-4/+3
2020-08-24add tcgetwinsize and tcsetwinsize functions, move struct winsizeRich Felker-7/+29
2020-08-22fix MUSL_LOCPATH searchRich Felker-1/+1
2020-08-17add gettid functionRich Felker-0/+9
2020-08-12aarch64: fix setjmp return valueSzabolcs Nagy-4/+3
2020-08-12setjmp: optimize longjmp prologuesAlexander Monakov-14/+8
2020-08-11setjmp: optimize x86 longjmp epiloguesAlexander Monakov-12/+6
2020-08-11setjmp: avoid useless REX-prefix on xor %eax, %eaxAlexander Monakov-2/+2
2020-08-11setjmp: fix x86-64 longjmp argument adjustmentAlexander Monakov-6/+6
2020-08-08prefer new socket syscalls, fallback to SYS_socketcall only if neededRich Felker-14/+27
2020-08-05math: new software sqrtlSzabolcs Nagy-1/+253
2020-08-05math: add __math_invalidlSzabolcs Nagy-0/+12
2020-08-05math: new software sqrtfSzabolcs Nagy-70/+70
2020-08-05math: new software sqrtSzabolcs Nagy-173/+179
2020-08-05in hosts file lookups, honor first canonical name regardless of familyRich Felker-1/+1
2020-08-04in hosts file lookups, use only first match for canonical nameRich Felker-2/+7
2020-08-04release 1.2.1v1.2.1Rich Felker-1/+37
2020-08-02add m68k sqrtl using native instructionRich Felker-0/+15
2020-07-24getentropy: fix UB if len==0Bartosz Brachaczek-1/+1
2020-07-06fix async-cancel-safety of pthread_cancelRich Felker-1/+4
2020-07-06make thread killlock async-signal-safe for pthread_killRich Felker-5/+18
2020-07-05fix C implementation of a_clz_32Rich Felker-1/+1
2020-07-02vfscanf: fix possible invalid free due to uninitialized variable useJulien Ramseier-1/+1
2020-06-30make mallocng the default malloc implementationRich Felker-3/+3
2020-06-30add malloc implementation selection to configureRich Felker-0/+12
2020-06-30import mallocngRich Felker-13/+938
2020-06-29add glue code for mallocng mergeRich Felker-0/+129
2020-06-26add optimized aarch64 memcpy and memsetRich Felker-0/+304
2020-06-25add big-endian support to ARM assembler memcpyAndre McCurdy-8/+98
2020-06-21clear need_locks in child after forkRich Felker-0/+1
2020-06-16only use memcpy realloc to shrink if an exact-sized free chunk existsRich Felker-0/+12
2020-06-16fix memset overflow in oldmalloc race fix overhaulRich Felker-1/+1
2020-06-15fix invalid use of access function in nftwRich Felker-4/+18
2020-06-11add fallback a_clz_32 implementationRich Felker-0/+15
2020-06-10only disable aligned_alloc if malloc was replaced but it wasn'tRich Felker-1/+2
2020-06-10have ldso track replacement of aligned_allocRich Felker-0/+4
2020-06-10reintroduce calloc elison of memset for direct-mmapped allocationsRich Felker-1/+15
2020-06-10move __malloc_replaced to a top-level malloc fileRich Felker-2/+3
2020-06-10switch to a common calloc implementationRich Felker-47/+37