implement POSIX asynchronous io
authorRich Felker <dalias@aerifal.cx>
Fri, 9 Sep 2011 05:07:38 +0000 (01:07 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 9 Sep 2011 05:07:38 +0000 (01:07 -0400)
commitb4de6f93aed733b8fc8d103e5ced69ebe7d659e6
tree33664a468c80b6b37a079d7d9bdbadf5adf4f93c
parent96cea94ad258be262ecf15b33d13cf775e59720d
implement POSIX asynchronous io

some features are not yet supported, and only minimal testing has been
performed. should be considered experimental at this point.
include/aio.h [new file with mode: 0644]
src/aio/aio_cancel.c [new file with mode: 0644]
src/aio/aio_error.c [new file with mode: 0644]
src/aio/aio_fsync.c [new file with mode: 0644]
src/aio/aio_readwrite.c [new file with mode: 0644]
src/aio/aio_return.c [new file with mode: 0644]
src/aio/aio_suspend.c [new file with mode: 0644]
src/aio/lio_listio.c [new file with mode: 0644]