summaryrefslogtreecommitdiff
path: root/src/aio/aio.c
AgeCommit message (Expand)AuthorFilesLines
2022-10-19fix AS-safety of close when aio is in use and fd map is expandedRich Felker1-0/+6
2022-10-19fix potential deadlock between multithreaded fork and aioRich Felker1-2/+17
2022-10-19remove LFS64 symbol aliases; replace with dynamic linker remappingRich Felker1-7/+0
2020-12-08drop use of pthread_once for aio thread stack size initRich Felker1-10/+8
2020-11-11convert malloc use under libc-internal locks to use internal allocatorRich Felker1-0/+5
2020-10-14move aio implementation details to a proper internal headerRich Felker1-0/+1
2020-09-28fix fork of processes with active async io contextsRich Felker1-0/+14
2018-12-11on failed aio submission, set aiocb error and return valueRich Felker1-2/+4
2018-12-11don't create aio queue/map structures for invalid file descriptorsRich Felker1-4/+8
2018-12-11move aio queue allocation from io thread to submitting threadRich Felker1-16/+21
2018-12-09fix and future-proof against stack overflow in aio io threadsRich Felker1-1/+12
2018-09-12remove spurious inclusion of libc.h for LFS64 ABI aliasesRich Felker1-6/+6
2018-09-12reduce spurious inclusion of libc.hRich Felker1-1/+0
2015-03-03make all objects used with atomic operations volatileRich Felker1-1/+2
2015-02-14fix type error (arch-dependent) in new aio codeRich Felker1-1/+1
2015-02-13overhaul aio implementation for correctnessRich Felker1-0/+378