musl/src/aio
Rich Felker efd4d87aa4 clean up sloppy nested inclusion from pthread_impl.h
this mirrors the stdio_impl.h cleanup. one header which is not
strictly needed, errno.h, is left in pthread_impl.h, because since
pthread functions return their error codes rather than using errno,
nearly every single pthread function needs the errno constants.

in a few places, rather than bringing in string.h to use memset, the
memset was replaced by direct assignment. this seems to generate much
better code anyway, and makes many functions which were previously
non-leaf functions into leaf functions (possibly eliminating a great
deal of bloat on some platforms where non-leaf functions require ugly
prologue and/or epilogue).
2012-11-08 17:04:20 -05:00
..
aio_cancel.c implement POSIX asynchronous io 2011-09-09 01:07:38 -04:00
aio_error.c fix inconsistent signature for aio_error 2011-09-14 09:36:38 -04:00
aio_fsync.c implement POSIX asynchronous io 2011-09-09 01:07:38 -04:00
aio_readwrite.c clean up sloppy nested inclusion from pthread_impl.h 2012-11-08 17:04:20 -05:00
aio_return.c implement POSIX asynchronous io 2011-09-09 01:07:38 -04:00
aio_suspend.c fix various errors in function signatures/prototypes found by nsz 2011-09-13 21:09:35 -04:00
lio_listio.c clean up sloppy nested inclusion from pthread_impl.h 2012-11-08 17:04:20 -05:00