YTSFlix_Go/vendor/github.com/boltdb/bolt/boltsync_unix.go
2018-11-04 15:58:15 +01: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()
}