Check out my first novel, midnight's simulacra!

Asynchronous I/O: Difference between revisions

From dankwiki
(Created page with '==See Also== * "[http://lse.sourceforge.net/io/aio.html Kernel Asynchronous I/O (AIO) Support for Linux]"')
 
No edit summary
Line 1: Line 1:
Defined in [http://opengroup.org/onlinepubs/009695399/basedefs/aio.h.html POSIX 1003.1] (2004), and largely unchanged since then (though see Ulrich Drepper's [http://people.redhat.com/drepper/newni-slides.pdf 2006 proposal]), asynchronous I/O provides perhaps the most easily parallelized I/O model [[Fast UNIX Servers|on UNIX]].
==See Also==
==See Also==
* "[http://lse.sourceforge.net/io/aio.html Kernel Asynchronous I/O (AIO) Support for Linux]"
* "[http://lse.sourceforge.net/io/aio.html Kernel Asynchronous I/O (AIO) Support for Linux]"

Revision as of 01:04, 21 October 2009

Defined in POSIX 1003.1 (2004), and largely unchanged since then (though see Ulrich Drepper's 2006 proposal), asynchronous I/O provides perhaps the most easily parallelized I/O model on UNIX.

See Also