summaryrefslogtreecommitdiff
path: root/src/internal
AgeCommit message (Expand)AuthorLines
2020-11-20fix regression in pthread_exitRich Felker-1/+2
2020-11-11lift child restrictions after multi-threaded forkRich Felker-0/+19
2020-10-14move aio implementation details to a proper internal headerRich Felker-3/+9
2020-10-14remove long-unused struct __timer from pthread_impl.hRich Felker-5/+0
2020-10-14move __abort_lock to its own file and drop pointless weak_alias trickRich Felker-0/+2
2020-09-28fix fork of processes with active async io contextsRich Felker-0/+2
2020-08-27remove redundant pthread struct members repeated for layout purposesRich Felker-9/+14
2020-08-27deduplicate __pthread_self thread pointer adjustment out of each archRich Felker-0/+2
2020-08-24deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSETRich Felker-0/+10
2020-08-24make h_errno thread-localRich Felker-0/+1
2020-08-08prefer new socket syscalls, fallback to SYS_socketcall only if neededRich Felker-9/+23
2020-08-05math: add __math_invalidlSzabolcs Nagy-0/+3
2020-07-05fix C implementation of a_clz_32Rich Felker-1/+1
2020-06-11add fallback a_clz_32 implementationRich Felker-0/+15
2020-06-10have ldso track replacement of aligned_allocRich Felker-0/+1
2020-06-10reintroduce calloc elison of memset for direct-mmapped allocationsRich Felker-0/+1
2020-06-02move malloc_impl.h from src/internal to src/mallocRich Felker-43/+0
2020-06-02move declaration of interfaces between malloc and ldso to dynlink.hRich Felker-4/+4
2020-05-22restore lock-skipping for processes that return to single-threaded stateRich Felker-0/+1
2020-05-22cut down size of some libc struct membersRich Felker-3/+3
2020-05-22don't use libc.threads_minus_1 as relaxed atomic for skipping locksRich Felker-1/+1
2020-04-17move __string_read into vsscanf source fileRich Felker-2/+0
2020-04-17fix possible access to uninitialized memory in shgetc (via scanf)Rich Felker-1/+1
2020-02-21math: fix sinh overflows in non-nearest roundingSzabolcs Nagy-2/+2
2020-02-05remove legacy time32 timer[fd] syscalls from public syscall.hRich Felker-0/+16
2020-02-05remove further legacy time32 clock syscalls from public syscall.hRich Felker-0/+16
2020-01-30remove legacy clock_gettime and gettimeofday from public syscall.hRich Felker-0/+7
2019-12-31move stage3_func typedef out of shared internal dynlink.h headerRich Felker-1/+0
2019-12-17implement SO_TIMESTAMP[NS] fallback for kernels without time64 versionsRich Felker-0/+7
2019-10-18fix incorrect use of fabs on long double operand in floatscan.cRich Felker-4/+1
2019-09-29remove remaining traces of __tls_get_newSzabolcs Nagy-1/+0
2019-08-11add support for powerpc/powerpc64 unaligned relocationsSamuel Holland-0/+1
2019-07-31ioctl: add fallback for new time64 SIOCGSTAMP[NS]Rich Felker-0/+7
2019-07-31get/setsockopt: add fallback for new time64 SO_RCVTIMEO/SO_SNDTIMEORich Felker-0/+7
2019-07-31make __socketcall analogous to __syscall, error-returningRich Felker-6/+6
2019-07-27internally, define plain syscalls, if missing, as their time64 variantsRich Felker-0/+83
2019-06-21do not use _Noreturn for a function pointer in dynamic linkerMatthew Maurer-1/+1
2019-05-05allow archs to provide a 7-argument syscall if neededRich Felker-0/+1
2019-04-20make new math code compatible with unused variable warning/errorRich Felker-3/+6
2019-04-17math: new powSzabolcs Nagy-0/+1
2019-04-17math: new powfSzabolcs Nagy-0/+6
2019-04-17math: new exp2f and expfSzabolcs Nagy-0/+16
2019-04-17math: add configuration macrosSzabolcs Nagy-0/+5
2019-04-17math: add macros for static branch prediction hintsSzabolcs Nagy-0/+9
2019-04-17math: add double precision error handling functionsSzabolcs Nagy-0/+5
2019-04-17math: add single precision error handling functionsSzabolcs Nagy-0/+7
2019-04-17math: add eval_as_float and eval_as_doubleSzabolcs Nagy-0/+17
2019-04-17math: add fp_arch.h with fp_barrier and fp_force_evalSzabolcs Nagy-6/+65
2019-04-17math: remove sun copyright from libm.hSzabolcs Nagy-23/+0
2019-04-17math: add asuint, asuint64, asfloat and asdoubleSzabolcs Nagy-33/+15