| 2167 | #endif |
| 2168 | |
| 2169 | int |
| 2170 | sys_aio_read(struct thread *td, struct aio_read_args *uap) |
| 2171 | { |
| 2172 | |
| 2173 | return (aio_aqueue(td, uap->aiocbp, NULL, LIO_READ, &aiocb_ops)); |
| 2174 | } |
| 2175 | |
| 2176 | int |
| 2177 | sys_aio_readv(struct thread *td, struct aio_readv_args *uap) |
nothing calls this directly
no test coverage detected