| 3047 | } |
| 3048 | |
| 3049 | int |
| 3050 | freebsd32_aio_fsync(struct thread *td, struct freebsd32_aio_fsync_args *uap) |
| 3051 | { |
| 3052 | |
| 3053 | return (kern_aio_fsync(td, uap->op, (struct aiocb *)uap->aiocbp, |
| 3054 | &aiocb32_ops)); |
| 3055 | } |
| 3056 | |
| 3057 | #ifdef COMPAT_FREEBSD6 |
| 3058 | int |
nothing calls this directly
no test coverage detected