route/vendor/github.com/boltdb/bolt/boltsync_unix.go

9 lines
169 B
Go
Raw Normal View History

2017-04-28 23:28:25 +00:00
// +build !windows,!plan9,!linux,!openbsd
package bolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}