| 2158 | /* syscall - asynchronous read from a file (REALTIME) */ |
| 2159 | #ifdef COMPAT_FREEBSD6 |
| 2160 | int |
| 2161 | freebsd6_aio_read(struct thread *td, struct freebsd6_aio_read_args *uap) |
| 2162 | { |
| 2163 | |
| 2164 | return (aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_READ, |
| 2165 | &aiocb_ops_osigevent)); |
| 2166 | } |
| 2167 | #endif |
| 2168 | |
| 2169 | int |
nothing calls this directly
no test coverage detected