| 2183 | /* syscall - asynchronous write to a file (REALTIME) */ |
| 2184 | #ifdef COMPAT_FREEBSD6 |
| 2185 | int |
| 2186 | freebsd6_aio_write(struct thread *td, struct freebsd6_aio_write_args *uap) |
| 2187 | { |
| 2188 | |
| 2189 | return (aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_WRITE, |
| 2190 | &aiocb_ops_osigevent)); |
| 2191 | } |
| 2192 | #endif |
| 2193 | |
| 2194 | int |
nothing calls this directly
no test coverage detected