about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix compile regression in exit on archs without SYS_pauseRich Felker2024-10-101-1/+1
* abstract missing SYS_pause syscall with macrosRich Felker2024-10-102-5/+12
* statx: fix uninitialized attributes/mask in fallback pathRich Felker2024-09-131-1/+1
* statx: fix ENOSYS emulation not setting stx_rdev_*Gabriel Ravier2024-09-131-0/+2
* sysconf: fix _SC_MINSIGSTKSZ computation to match kernel interpretationRich Felker2024-08-311-2/+7
* sigaltstack: enforce dynamic MINSIGSTKSZ limitRich Felker2024-08-311-1/+3
* printf: drastically reduce stack usage without [long] double argsRich Felker2024-08-261-4/+8
* isatty: don't collapse all non-EBADF errors to ENOTTYRich Felker2024-08-201-4/+2
* printf core: replace if(0) blocks around switch cases with explicit gotosRich Felker2024-08-181-3/+3
* iconv: add cp858Rich Felker2024-08-181-0/+11
* catan: remove no-op reduction mod pi and unused codeRich Felker2024-08-163-74/+3
* remove incorrect comment regarding powl exceptional casesRich Felker2024-08-141-8/+0
* strerror: add error strings for EUCLEAN and ENAVAILRich Felker2024-08-101-0/+2
* fix lost or delayed wakes in sem_post under certain race conditionsRich Felker2024-08-101-1/+1
* timer_create: replace pthread barrier with semaphores for thread startRich Felker2024-07-241-4/+14
* atexit: fail rather than deadlocking after last handler is calledRich Felker2024-07-241-0/+12
* exit: add back lock to make concurrent calls to exit safeRich Felker2024-07-231-0/+14
* move __utc string object to its own translation unitRich Felker2024-07-232-1/+3
* syslog: revert LOG_FAC/LOG_FACMASK changesRich Felker2024-07-051-1/+1
* siglongjmp: document why this function just calls longjmpRich Felker2024-06-231-0/+5
* inet_ntop: fix the IPv6 leading zero sequence compressionJakub Stasiak2024-06-221-1/+6
* getusershell: skip blank lines and commentsRich Felker2024-06-211-2/+4
* syslog: fix incorrect LOG_MAKEPRI and LOG_FAC[MASK] macrosRich Felker2024-06-131-1/+1
* add renameat2 linux syscall wrapperTony Ambardar2024-05-231-0/+11
* fix mismatched type in posix_getdents definitionRich Felker2024-05-121-1/+1
* implement posix_getdents adopted for next issue of POSIXRich Felker2024-05-081-0/+11
* strptime: implement conversion specifiers adopted for next POSIX issueRich Felker2024-05-061-1/+65
* printf decimal integer formatting: shave off one divisionRich Felker2024-05-061-1/+2
* initgroups: do not artificially limit number of supplementary groupsRich Felker2024-04-131-4/+22
* printf: fix edge case where hex float precision was not honoredRich Felker2024-04-121-9/+2
* complex: fix comment in cacoshSzabolcs 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