summaryrefslogtreecommitdiff
path: root/src/aio
AgeCommit message (Expand)AuthorFilesLines
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 Felker2-0/+2
2020-09-28fix fork of processes with active async io contextsRich Felker1-0/+14
2019-10-28disable lfs64 aliases for remapped time64 functionsRich Felker1-0/+2
2019-07-10fix restrict violations in internal use of several functionsSamuel Holland1-3/+3
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 Felker3-8/+8
2018-09-12reduce spurious inclusion of libc.hRich Felker3-3/+0
2018-09-12move additional pthread internal declarations to pthread_impl.h, hideRich Felker1-2/+0
2015-03-03make all objects used with atomic operations volatileRich Felker1-1/+2
2015-03-02make aio_suspend a cancellation point and properly handle cancellationRich Felker1-3/+9
2015-03-02factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker1-1/+1
2015-02-14fix type error (arch-dependent) in new aio codeRich Felker1-1/+1
2015-02-13overhaul aio implementation for correctnessRich Felker7-192/+424
2014-09-05add missing legacy LFS *64 symbol aliasesSzabolcs Nagy7-0/+19
2014-07-05eliminate use of cached pid from thread structureRich Felker2-2/+2
2013-09-15support configurable page size on mips, powerpc and microblazeSzabolcs Nagy2-2/+2
2013-06-16fix invalid access in aio notificationRich Felker1-1/+1
2013-06-16fix uninitialized variable in lio (aio) codeRich Felker1-1/+1
2013-01-13fix lio_listio return value in LIO_WAIT modeSzabolcs Nagy1-1/+1
2012-12-04use alternate argument syntax for restrict with lio_listioRich Felker1-1/+1
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker2-0/+6
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker1-2/+2
2011-09-28stupid typo (caused by rather ugly spelling in POSIX..) in aioRich Felker1-1/+1
2011-09-16fix idiotic const-correctness error in lio_listioRich Felker1-1/+1
2011-09-14fix inconsistent signature for aio_errorRich Felker1-1/+1
2011-09-13fix return types for aio_read and aio_write againRich Felker1-2/+2
2011-09-13fix various errors in function signatures/prototypes found by nszRich Felker1-1/+1
2011-09-09implement POSIX asynchronous ioRich Felker7-0/+338