11 lines
172 B
Go
Raw Normal View History

2021-11-22 16:05:02 +00: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()))
}