aboutsummaryrefslogtreecommitdiff
path: root/boltsync_unix.go
blob: 8db89776fe660d70b38f2c4343bdc506ed0bdcc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// +build !windows,!plan9,!linux,!openbsd

package bolt

var odirect int

// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
	return db.file.Sync()
}