summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2019-06-21do not use _Noreturn for a function pointer in dynamic linkerMatthew Maurer1-1/+1
2019-06-14add riscv64 architecture supportRich Felker24-0/+465
2019-05-26optimize aarch64 dynamic tlsdesc function to spill fewer registersRich Felker1-10/+7
2019-05-16fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targetsSzabolcs Nagy1-1/+2
2019-05-16fix format strings for uid/gid values in putpwent/putgrentRich Felker2-2/+2
2019-05-05make fgetwc set error indicator for stream on encoding errorsRich Felker1-2/+8
2019-05-05allow archs to provide a 7-argument syscall if neededRich Felker1-0/+1
2019-04-20make new math code compatible with unused variable warning/errorRich Felker1-3/+6
2019-04-17math: new powSzabolcs Nagy4-303/+521
2019-04-17math: new exp and exp2Szabolcs Nagy4-480/+434
2019-04-17math: new log2Szabolcs Nagy3-106/+335
2019-04-17math: new logSzabolcs Nagy3-104/+454
2019-04-17math: new powfSzabolcs Nagy4-240/+232
2019-04-17math: new exp2f and expfSzabolcs Nagy5-179/+193
2019-04-17math: new log2fSzabolcs Nagy3-58/+108
2019-04-17math: new logfSzabolcs Nagy3-54/+109
2019-04-17math: add configuration macrosSzabolcs Nagy1-0/+5
2019-04-17math: add macros for static branch prediction hintsSzabolcs Nagy1-0/+9
2019-04-17math: add double precision error handling functionsSzabolcs Nagy6-0/+35
2019-04-17math: add single precision error handling functionsSzabolcs Nagy6-0/+37
2019-04-17math: add eval_as_float and eval_as_doubleSzabolcs Nagy1-0/+17
2019-04-17math: add fp_arch.h with fp_barrier and fp_force_evalSzabolcs Nagy1-6/+65
2019-04-17math: remove sun copyright from libm.hSzabolcs Nagy1-23/+0
2019-04-17math: add asuint, asuint64, asfloat and asdoubleSzabolcs Nagy1-33/+15
2019-04-17math: move complex math out of libm.hSzabolcs Nagy67-80/+87
2019-04-10remove external __syscall function and last remaining usersRich Felker18-264/+2
2019-04-10overhaul i386 syscall mechanism not to depend on external asm sourceRich Felker7-71/+28
2019-04-09in membarrier fallback, allow for possibility that sigaction failsRich Felker1-8/+9
2019-04-03fix unintended global symbols in atanl.cDan Gohman1-3/+3
2019-04-02use __strchrnul instead of strchr and strlen in execvpeFrediano Ziglio1-2/+1
2019-04-01fix harmless-by-chance typo in priority inheritance mutex codeRich Felker1-1/+1
2019-03-31implement priority inheritance mutexesRich Felker4-8/+93
2019-03-29clean up access to mutex type in pthread_mutex_trylockRich Felker1-2/+2
2019-03-21support archs with no renameat syscall, only renameat2Drew DeVault2-2/+8
2019-03-21support archs with no mlock syscall, only mlock2Drew DeVault1-0/+4
2019-03-21fix data race choosing next key slot in pthread_key_createRich Felker1-1/+1
2019-03-14fix crash/out-of-bound read in sscanfRich Felker2-2/+3
2019-03-13fix namespace violation in dependencies of mtx_lockRich Felker1-1/+1
2019-03-13handle labels with 8-bit byte values in dn_skipnameRyan Fairfax1-2/+5
2019-03-12setvbuf: return failure if mode is invalidA. Wilcox1-1/+3
2019-03-12make FILE a complete type for pre-C11 standard profilesRich Felker2-0/+11
2019-03-05don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARMRich Felker1-1/+1
2019-02-22add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker4-3/+88
2019-02-22make thread list lock a recursive lockRich Felker1-11/+21
2019-02-20fix spurious undefined behavior in getaddrinfoRich Felker1-3/+2
2019-02-20fix invalid free of partial addrinfo list with multiple servicesRich Felker1-1/+1
2019-02-18install dynamic tls synchronously at dlopen, streamline accessRich Felker8-118/+7
2019-02-17fix data race between new pthread_key_delete and dtor executionRich Felker1-2/+4
2019-02-16introduce namespace-safe rwlock aliases; use in pthread_key_createRich Felker9-20/+41
2019-02-16rewrite pthread_key_delete to use global thread listRich Felker2-75/+19