about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* complex: fix comment in cacosh HEAD masterSzabolcs Nagy2024-03-141-1/+1
* math: fix fma(x,y,0) when x*y rounds to -0Szabolcs Nagy2024-03-141-1/+1
* fix pwrite/pwritev handling of O_APPEND filesRich Felker2024-03-142-1/+20
* iconv: fix missing bounds checking for shift_jis decodingRich Felker2024-03-021-0/+1
* add missing inline keyword on default a_barrier definitionRich Felker2024-03-021-1/+1
* iconv: add aliases for GBKRich Felker2024-03-011-1/+1
* iconv: add euro symbol to GBK as single byte 0x80Rich Felker2024-03-011-0/+4
* iconv: add cp932 as an alias for shift_jisRich Felker2024-02-291-1/+1
* riscv32: add thread supportStefan O'Rear2024-02-294-0/+76
* riscv32: add setjmp/longjmp and sigreturnStefan O'Rear2024-02-294-0/+114
* riscv32: add dlsymStefan O'Rear2024-02-291-0/+6
* riscv32: add fenv and mathStefan O'Rear2024-02-2914-0/+239
* getnameinfo: fix calling __dns_parse with potentially too large rlenAlexey Izbyshev2024-02-291-1/+3
* posix_spawn: fix child spinning on write to a broken pipeAlexey Izbyshev2024-02-291-1/+6
* loongarch64 __clone: align stack pointer mod 16wanghongliang2024-02-261-0/+1
* riscv: fall back to syscall __riscv_flush_icacheStefan O'Rear2024-02-251-0/+1
* sh dlsym: fix passing of return address for RTLD_NEXT useRich Felker2024-02-251-1/+1
* add statx interface using syscall, fallback to fstatatDuncan Bellamy2024-02-241-0/+42
* use new SYS_fchmodat2 syscall to implement fchmodat with flagsGaël PORTAY2024-02-221-1/+4
* remove flag argument from fchmodat syscallGaël PORTAY2024-02-221-1/+1
* 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