| 2206 | } |
| 2207 | |
| 2208 | int |
| 2209 | sys_aio_mlock(struct thread *td, struct aio_mlock_args *uap) |
| 2210 | { |
| 2211 | |
| 2212 | return (aio_aqueue(td, uap->aiocbp, NULL, LIO_MLOCK, &aiocb_ops)); |
| 2213 | } |
| 2214 | |
| 2215 | static int |
| 2216 | kern_lio_listio(struct thread *td, int mode, struct aiocb * const *uacb_list, |
nothing calls this directly
no test coverage detected