1 2 3 4 5 6 7 8 9 10
package bolt import ( "os" "syscall" ) func fdatasync(f *os.File) error { return syscall.Fdatasync(int(f.Fd())) }