gime-lib/vendor/github.com/boltdb/bolt/boltsync_unix.go
2017-07-28 06:44:42 -05:00

9 lines
169 B
Go

// +build !windows,!plan9,!linux,!openbsd
package bolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}