| 3511 | }; |
| 3512 | #endif |
| 3513 | int |
| 3514 | sys_fsync(struct thread *td, struct fsync_args *uap) |
| 3515 | { |
| 3516 | |
| 3517 | return (kern_fsync(td, uap->fd, true)); |
| 3518 | } |
| 3519 | |
| 3520 | int |
| 3521 | sys_fdatasync(struct thread *td, struct fdatasync_args *uap) |
nothing calls this directly
no test coverage detected