11 lines
172 B
Go
Raw Normal View History

2019-10-01 12:22:30 -03:00
package bbolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}