| 2981 | } |
| 2982 | |
| 2983 | int |
| 2984 | freebsd32_aio_readv(struct thread *td, struct freebsd32_aio_readv_args *uap) |
| 2985 | { |
| 2986 | |
| 2987 | return (aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_READV, |
| 2988 | &aiocb32_ops)); |
| 2989 | } |
| 2990 | |
| 2991 | #ifdef COMPAT_FREEBSD6 |
| 2992 | int |
nothing calls this directly
no test coverage detected