blob: 2b676661409066133dcff5df491a77dfee2a605c [file] [log] [blame]
sslobodrd046be82019-01-16 10:02:22 -05001package bolt
2
3import (
4 "syscall"
5)
6
7// fdatasync flushes written data to a file descriptor.
8func fdatasync(db *DB) error {
9 return syscall.Fdatasync(int(db.file.Fd()))
10}