summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2023-02-23fix incorrect unit for CPU_SETSIZE macroRich Felker1-1/+1
2023-02-12dns: prefer monotonic clock for timeoutsA. Wilcox1-1/+2
2023-02-12fix return value of wcs{,n}cmp for extreme wchar_t valuesGabriel Ravier2-2/+2
2023-02-12math: fix undefined shift in logfSzabolcs Nagy1-1/+1
2023-02-12inet_pton: fix uninitialized memory use for IPv4-mapped IPv6 addressesAlexey Izbyshev1-0/+1
2023-02-12hsearch: fix null pointer arithmetic UBSzabolcs Nagy1-2/+2
2023-02-12increase sendmsg internal buffer to support SCM_MAX_FDColin Cross1-2/+5
2023-02-12mq_notify: block all (application) signals in the worker threadRich Felker1-0/+5
2023-02-12mq_notify: join worker thread before returning in error pathRich Felker1-2/+5
2023-02-12mq_notify: rework to fix use-after-close/double-close bugsRich Felker1-8/+15
2023-02-11mq_notify: use semaphore instead of barrier to sync args consumptionRich Felker1-5/+9
2023-02-11fix pthread_detach inadvertently acting as cancellation point in race caseRich Felker1-2/+6
2023-02-11powerpc-sf longjmp clobbering of val argumentRich Felker1-4/+4
2023-02-09riscv64: add vforkPedro Falcato1-0/+12
2023-02-09fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64Rich Felker14-50/+12
2023-02-08fix integer overflow in WIFSTOPPED macroRich Felker2-2/+2
2023-01-18fix debugger tracking of shared libraries on mips with PIE main programRich Felker5-0/+11
2023-01-06expose memmem under baseline POSIX feature profileRich Felker1-1/+1
2022-12-17use libc-internal malloc for pthread_atforkRich Felker1-0/+5
2022-12-14prevent invalid reads of nl_arg in printf_coreMarkus Wichmann1-6/+8
2022-12-14elf.h: add ELFCOMPRESS_ZSTDFangrui Song1-0/+1
2022-12-13semaphores: fix missed wakes from ABA bug in waiter count logicRich Felker4-12/+19
2022-11-30ldso: fix invalid early references to extern-linkage libc.page_sizeRich Felker1-1/+8
2022-11-12pthread_atfork: fix return value on malloc failureAlexey Izbyshev1-1/+2
2022-11-10fix double-processing of DT_RELR relocations in ldso relocating itselfRich Felker1-0/+1
2022-11-07fix strverscmp comparison of digit sequence with non-digitsRich Felker1-3/+3
2022-11-05fix async thread cancellation stack alignmentRich Felker1-1/+6
2022-10-20fix return value of gethostby{name[2],addr} with no result but no errorRich Felker2-2/+2
2022-10-19clean up dns_parse_callbackRich Felker1-13/+13
2022-10-19dns response handling: don't treat too many addresses as an errorRich Felker1-1/+1
2022-10-19dns response handling: ignore presence of wrong-type RRsRich Felker1-2/+8
2022-10-19fix missing synchronization of pthread TSD keys with MT-forkRich Felker3-0/+12
2022-10-19fgets: avoid arithmetic overflow when n==INT_MIN is passedRich Felker1-2/+3
2022-10-19fix AS-safety of close when aio is in use and fd map is expandedRich Felker1-0/+6
2022-10-19fix use of uninitialized dummy_fut in aio_suspendAlexey Izbyshev1-1/+1
2022-10-19fix potential deadlock between multithreaded fork and aioRich Felker3-4/+21
2022-10-19fix potential unsynchronized access to killlock state at thread exitRich Felker1-6/+10
2022-10-19fix potential deadlock in dlerror buffer handling at thread exitRich Felker3-19/+18
2022-10-19configure: disable TBAA optimization because most compilers are buggyRich Felker1-0/+8
2022-10-19disable MADV_FREE usage in mallocngRich Felker2-1/+3
2022-10-19remove LFS64 programming interfaces (macro-only) from _GNU_SOURCERich Felker16-16/+16
2022-10-19remove LFS64 symbol aliases; replace with dynamic linker remappingRich Felker57-135/+38
2022-10-19dns query core: detect udp truncation at recv timeRich Felker1-4/+13
2022-10-19getaddrinfo dns lookup: use larger answer buffer to handle long CNAMEsRich Felker1-3/+5
2022-09-22arpa/nameser.h: update RR types listRich Felker1-0/+71
2022-09-22dns: implement tcp fallback in __res_msend query coreRich Felker1-2/+117
2022-09-22res_send: use a temp buffer if caller's buffer is under 512 bytesRich Felker1-1/+9
2022-09-21adapt res_msend DNS query core for working with multiple socketsRich Felker1-6/+11
2022-09-20getaddrinfo: add EAI_NODATA error code to distinguish NODATA vs NxDomainRich Felker6-6/+13
2022-09-19fix error cases in gethostbyaddr_rRich Felker1-2/+3