about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* add framework to support archs without a native wait4 syscallRich Felker2024-02-226-4/+71
* sh: fix sigsetjmp corrupting call-saved register r8Rich Felker2024-02-171-1/+1
* add loongarch64 portHongliang Wang2024-02-1610-0/+257
* strftime: fix breakage in last change (uninitialized pointer access)Rich Felker2024-02-161-1/+6
* syslog: use C locale for timestamp generationRich Felker2024-02-071-1/+2
* riscv: add TLSDESC supportRich Felker2024-02-031-0/+32
* sqrtl: fix invalid use of a non-constant-expression as static initializerRich Felker2024-02-031-2/+2
* riscv: correct symbol version of __vdso_flush_icachegns2024-02-031-1/+1
* add preadv2 and pwritev2 syscall wrappers, flag value macrosRich Felker2024-01-252-0/+34
* expose ppoll in default feature profileRich Felker2024-01-211-1/+1
* move ppoll from src/linux to src/select reflecting future standardizationRich Felker2024-01-211-0/+0
* remove INT_MAX limit on the n argument to snprintf/swprintfRich Felker2024-01-172-8/+0
* strftime: don't attempt to parse field width without seeing a digitRich Felker2023-11-211-1/+2
* mntent: fields are delimited only by tabs or spaces, not general whitespaceRich Felker2023-11-161-1/+1
* mntent: unescape octal sequencesq662023-11-161-4/+40
* ldso: convert TLSDESC_BACKWARDS from "#ifdef" to "if" logicRich Felker2023-11-061-0/+4
* byte-based printf family: emit a nul byte for %lc with argument zeroRich Felker2023-11-061-0/+2
* remove arbitrary limit from dns result parsingQuentin Rameau2023-11-061-1/+0
* pass AT_NO_AUTOMOUNT when emulating fstatat via statxAlexey Izbyshev2023-11-061-0/+1
* __year_to_secs: fix dangling pointerAlex Xu (Hello71)2023-11-061-2/+2
* timer_create: volatile static -> static volatileAlex Xu (Hello71)2023-11-061-1/+1
* ensure valid setxid return value in an unexpected error caseMarkus Wichmann2023-11-061-1/+1
* synccall: add separate exit_sem to fix thread release logic bugMarkus Wichmann2023-11-061-3/+5
* glob: fix wrong return code when aborting before any matchesRich Felker2023-08-241-1/+1
* statvfs: allocate spare for f_typeнаб2023-08-191-0/+1
* math: fix ld80 powl(x,huge) and powl(LDBL_MAX,small)Szabolcs Nagy2023-08-191-13/+21
* math: fix ld80 acoshl(x) for x < 0Szabolcs Nagy2023-08-191-3/+7
* fix rejection of dns responses with pointers past 512 byte offsetRich Felker2023-07-171-2/+2
* dns stub resolver: increase buffer size to handle chained CNAMEsRich Felker2023-07-041-1/+1
* printf core: fix gratuitous integer formatting buffer sizeRich Felker2023-06-121-1/+1
* all printf variants: fix argument type handling for %c and %lcRich Felker2023-06-122-4/+4
* fix public clone function to be safe and usable by applicationsRich Felker2023-06-013-16/+68
* fix broken thread list unlocking after forkRich Felker2023-06-011-1/+1
* mbrtowc: Fix wrong return value when n > UINT_MAXAlexey Izbyshev2023-05-261-1/+1
* fix return value of wmemcmp for extreme wchar_t valuesRich Felker2023-04-241-1/+1
* fix wide printf numbered argument buffer overflowGabriel Ravier2023-04-141-2/+2
* wait4: fix missing rusage on x32 due to wrong success conditionAlexey Izbyshev2023-04-111-1/+1
* semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32Alexey Izbyshev2023-04-111-1/+2
* getopt: fix null pointer arithmetic ubAlexey Izbyshev2023-04-111-1/+2
* nftw: fix use of uninitialized struct statAlexey Izbyshev2023-04-111-1/+3
* dns: check length field in tcp response messageAlexey Kodanev2023-04-071-0/+1
* fix swprintf handling of nul character in outputRich Felker2023-03-221-0/+1
* in printf, use ferror macro rather than directly inspecting flags bitRich Felker2023-03-211-2/+2
* remove wide printf dependency on ugly hack in vfprintfRich Felker2023-03-212-9/+15
* fix (normal, narrow) printf erroneously processing %n after output errorsRich Felker2023-03-211-0/+3
* fix wide printf continuation after output or encoding errorsRich Felker2023-03-211-2/+6
* fix wide printf forms ignoring width for %lc format specifierRich Felker2023-03-201-5/+2
* poll: fix misuse of timespec type on 32-bit archs without poll syscallRich Felker2023-03-031-2/+7
* select: fix 64-bit timeout truncation on pre-time64 kernelsAlexey Izbyshev2023-03-021-0/+1
* dup3: don't set FD_CLOEXEC on failure on kernels without dup3 syscallRich Felker2023-02-281-1/+2