| 3518 | } |
| 3519 | |
| 3520 | int |
| 3521 | sys_fdatasync(struct thread *td, struct fdatasync_args *uap) |
| 3522 | { |
| 3523 | |
| 3524 | return (kern_fsync(td, uap->fd, false)); |
| 3525 | } |
| 3526 | |
| 3527 | /* |
| 3528 | * Rename files. Source and destination must either both be directories, or |
nothing calls this directly
no test coverage detected