summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2020-06-16only use memcpy realloc to shrink if an exact-sized free chunk existsRich Felker1-0/+12
2020-06-16fix memset overflow in oldmalloc race fix overhaulRich Felker1-1/+1
2020-06-15fix invalid use of access function in nftwRich Felker1-4/+18
2020-06-11add fallback a_clz_32 implementationRich Felker1-0/+15
2020-06-10only disable aligned_alloc if malloc was replaced but it wasn'tRich Felker1-1/+2
2020-06-10have ldso track replacement of aligned_allocRich Felker2-0/+2
2020-06-10reintroduce calloc elison of memset for direct-mmapped allocationsRich Felker3-1/+15
2020-06-10move __malloc_replaced to a top-level malloc fileRich Felker2-2/+3
2020-06-10switch to a common calloc implementationRich Felker3-47/+37
2020-06-03move oldmalloc to its own directory under src/mallocRich Felker4-0/+0
2020-06-03move __expand_heap into malloc.cRich Felker3-73/+64
2020-06-03rename memalign source file back to its proper nameRich Felker1-0/+0
2020-06-03rename aligned_alloc source file back to its proper nameRich Felker1-0/+0
2020-06-03reverse dependency order of memalign and aligned_allocRich Felker4-10/+5
2020-06-03rename aligned_alloc source fileRich Felker1-0/+0
2020-06-03remove stale document from malloc src directoryRich Felker1-22/+0
2020-06-03rewrite bump allocator to fix corner cases, decouple from expand_heapRich Felker1-17/+72
2020-06-02move malloc_impl.h from src/internal to src/mallocRich Felker1-0/+0
2020-06-02move declaration of interfaces between malloc and ldso to dynlink.hRich Felker2-4/+4
2020-06-02reformat clock_adjtime with always-true condition removedRich Felker1-48/+46
2020-06-02always use time64 syscall first for clock_adjtimeRich Felker1-2/+1
2020-06-02fix broken time64 clock_adjtimeRich Felker1-1/+1
2020-06-02fix unbounded heap expansion race in mallocRich Felker1-152/+87
2020-05-22restore lock-skipping for processes that return to single-threaded stateRich Felker4-6/+12
2020-05-22cut down size of some libc struct membersRich Felker1-3/+3
2020-05-22don't use libc.threads_minus_1 as relaxed atomic for skipping locksRich Felker3-3/+3
2020-05-22reorder thread list unlink in pthread_exit after all locksRich Felker1-8/+11
2020-05-21handle possibility that SIGEMT replaces SIGSTKFLT in strsignalRich Felker1-0/+10
2020-05-19fix return value of res_send, res_query on errors from nameserverRich Felker1-1/+1
2020-05-19fix handling of errors resolving one of paired A+AAAA queryRich Felker1-4/+7
2020-05-18set AD bit in dns queries, suppress for internal useRich Felker3-0/+3
2020-04-30fix undefined behavior from signed overflow in strstr and memmemRich Felker2-8/+8
2020-04-24fix undefined behavior in wcsto[ld] family functionsRich Felker2-4/+2
2020-04-18fix sh fesetround failure to clear old modeRich Felker1-0/+2
2020-04-17move __string_read into vsscanf source fileRich Felker3-21/+13
2020-04-17remove spurious repeated semicolon in fmemopenRich Felker1-1/+1
2020-04-17combine two calls to memset in fmemopenRich Felker1-2/+2
2020-04-17fix possible access to uninitialized memory in shgetc (via scanf)Rich Felker1-1/+1
2020-04-17fix undefined behavior in scanf coreRich Felker1-0/+3
2020-03-24math: add x86_64 remquolAlexander Monakov1-0/+32
2020-03-24math: move x87-family fmod functions to C with inline asmAlexander Monakov8-44/+38
2020-03-24math: move x87-family remainder functions to C with inline asmAlexander Monakov8-50/+42
2020-03-24math: move x87-family rint functions to C with inline asmAlexander Monakov8-24/+28
2020-03-24math: move x87-family lrint functions to C with inline asmAlexander Monakov16-60/+64
2020-03-24math: move x86_64 (l)lrint(f) functions to C with inline asmAlexander Monakov8-20/+32
2020-03-24math: move i386 sqrt to C with inline asmAlexander Monakov2-21/+15
2020-03-24math: move i386 sqrtf to C with inline asmAlexander Monakov2-7/+12
2020-03-24math: move trivial x86-family sqrt functions to C with inline asmAlexander Monakov8-18/+28
2020-03-24math: move x87-family fabs functions to C with inline asmAlexander Monakov8-24/+28
2020-03-24math: move x86_64 fabs, fabsf to C with inline asmAlexander Monakov4-16/+20