| 2174 | } |
| 2175 | |
| 2176 | int |
| 2177 | sys_aio_readv(struct thread *td, struct aio_readv_args *uap) |
| 2178 | { |
| 2179 | |
| 2180 | return (aio_aqueue(td, uap->aiocbp, NULL, LIO_READV, &aiocb_ops)); |
| 2181 | } |
| 2182 | |
| 2183 | /* syscall - asynchronous write to a file (REALTIME) */ |
| 2184 | #ifdef COMPAT_FREEBSD6 |
nothing calls this directly
no test coverage detected