| 2192 | #endif |
| 2193 | |
| 2194 | int |
| 2195 | sys_aio_write(struct thread *td, struct aio_write_args *uap) |
| 2196 | { |
| 2197 | |
| 2198 | return (aio_aqueue(td, uap->aiocbp, NULL, LIO_WRITE, &aiocb_ops)); |
| 2199 | } |
| 2200 | |
| 2201 | int |
| 2202 | sys_aio_writev(struct thread *td, struct aio_writev_args *uap) |
nothing calls this directly
no test coverage detected