| 2603 | } |
| 2604 | |
| 2605 | int |
| 2606 | sys_aio_fsync(struct thread *td, struct aio_fsync_args *uap) |
| 2607 | { |
| 2608 | |
| 2609 | return (kern_aio_fsync(td, uap->op, uap->aiocbp, &aiocb_ops)); |
| 2610 | } |
| 2611 | |
| 2612 | /* kqueue attach function */ |
| 2613 | static int |
nothing calls this directly
no test coverage detected