about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix sigaltstack to ignore ss_size with SS_DISABLE, per POSIXJames Y Knight2019-07-131-1/+1
* use the correct attributes for ___errno_locationSamuel Holland2019-07-101-0/+3
* fix restrict violations in internal use of several functionsSamuel Holland2019-07-103-10/+10
* prevent dup2 action for posix_spawn internal pipe fdRich Felker2019-07-081-0/+4
* remove stray .end directives from powerpc[64] asmFangrui Song2019-07-022-2/+0
* ipc: prefer SYS_ipc when it is definedSzabolcs Nagy2019-07-0112-12/+12
* fix deadlock in synccall after threaded forkSamuel Holland2019-07-011-0/+1
* cap getdents length argument to INT_MAXRich Felker2019-06-281-0/+2
* allow fmemopen with zero sizeRich Felker2019-06-251-1/+1
* do not use _Noreturn for a function pointer in dynamic linkerMatthew Maurer2019-06-211-1/+1
* add riscv64 architecture supportRich Felker2019-06-1424-0/+465
* optimize aarch64 dynamic tlsdesc function to spill fewer registersRich Felker2019-05-261-10/+7
* fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targetsSzabolcs Nagy2019-05-161-1/+2
* fix format strings for uid/gid values in putpwent/putgrentRich Felker2019-05-162-2/+2
* make fgetwc set error indicator for stream on encoding errorsRich Felker2019-05-051-2/+8
* allow archs to provide a 7-argument syscall if neededRich Felker2019-05-051-0/+1
* make new math code compatible with unused variable warning/errorRich Felker2019-04-201-3/+6
* math: new powSzabolcs Nagy2019-04-174-303/+521
* math: new exp and exp2Szabolcs Nagy2019-04-174-480/+434
* math: new log2Szabolcs Nagy2019-04-173-106/+335
* math: new logSzabolcs Nagy2019-04-173-104/+454
* math: new powfSzabolcs Nagy2019-04-174-240/+232
* math: new exp2f and expfSzabolcs Nagy2019-04-175-179/+193
* math: new log2fSzabolcs Nagy2019-04-173-58/+108
* math: new logfSzabolcs Nagy2019-04-173-54/+109
* math: add configuration macrosSzabolcs Nagy2019-04-171-0/+5
* math: add macros for static branch prediction hintsSzabolcs Nagy2019-04-171-0/+9
* math: add double precision error handling functionsSzabolcs Nagy2019-04-176-0/+35
* math: add single precision error handling functionsSzabolcs Nagy2019-04-176-0/+37
* math: add eval_as_float and eval_as_doubleSzabolcs Nagy2019-04-171-0/+17
* math: add fp_arch.h with fp_barrier and fp_force_evalSzabolcs Nagy2019-04-171-6/+65
* math: remove sun copyright from libm.hSzabolcs Nagy2019-04-171-23/+0
* math: add asuint, asuint64, asfloat and asdoubleSzabolcs Nagy2019-04-171-33/+15
* math: move complex math out of libm.hSzabolcs Nagy2019-04-1767-80/+87
* remove external __syscall function and last remaining usersRich Felker2019-04-1018-264/+2
* overhaul i386 syscall mechanism not to depend on external asm sourceRich Felker2019-04-107-71/+28
* in membarrier fallback, allow for possibility that sigaction failsRich Felker2019-04-091-8/+9
* fix unintended global symbols in atanl.cDan Gohman2019-04-031-3/+3
* use __strchrnul instead of strchr and strlen in execvpeFrediano Ziglio2019-04-021-2/+1
* fix harmless-by-chance typo in priority inheritance mutex codeRich Felker2019-04-011-1/+1
* implement priority inheritance mutexesRich Felker2019-03-314-8/+93
* clean up access to mutex type in pthread_mutex_trylockRich Felker2019-03-291-2/+2
* support archs with no renameat syscall, only renameat2Drew DeVault2019-03-212-2/+8
* support archs with no mlock syscall, only mlock2Drew DeVault2019-03-211-0/+4
* fix data race choosing next key slot in pthread_key_createRich Felker2019-03-211-1/+1
* fix crash/out-of-bound read in sscanfRich Felker2019-03-142-2/+3
* fix namespace violation in dependencies of mtx_lockRich Felker2019-03-131-1/+1
* handle labels with 8-bit byte values in dn_skipnameRyan Fairfax2019-03-131-2/+5
* setvbuf: return failure if mode is invalidA. Wilcox2019-03-121-1/+3
* make FILE a complete type for pre-C11 standard profilesRich Felker2019-03-122-0/+11