Home
last modified time | relevance | path

Searched refs:kern_fsync (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/sys/compat/cloudabi/
H A Dcloudabi_fd.c135 return (kern_fsync(td, uap->fd, false)); in cloudabi_sys_fd_datasync()
473 return (kern_fsync(td, uap->fd, true)); in cloudabi_sys_fd_sync()
/freebsd-12.1/sys/sys/
H A Dsyscallsubr.h126 int kern_fsync(struct thread *td, int fd, bool fullsync);
/freebsd-12.1/sys/kern/
H A Dvfs_syscalls.c3372 kern_fsync(struct thread *td, int fd, bool fullsync) in kern_fsync() function
3424 return (kern_fsync(td, uap->fd, true)); in sys_fsync()
3431 return (kern_fsync(td, uap->fd, false)); in sys_fdatasync()
/freebsd-12.1/sys/compat/linux/
H A Dlinux_file.c1005 return (kern_fsync(td, uap->fd, false));