Statistics
| Branch: | Revision:

root / posix-aio-compat.h @ fad6cb1a

History | View | Annotate | Download (1.2 kB)

# Date Author Comment
3c529d93 12/12/2008 06:41 pm aliguori

Replace posix-aio with custom thread pool

glibc implements posix-aio as a thread pool and imposes a number of limitations.

1) it limits one request per-file descriptor. we hack around this by dup()'ing
file descriptors which is hideously ugly

2) it's impossible to add new interfaces and we need a vectored read/write...