Codebase list golang-github-boltdb-bolt / upstream/1.1.0 bolt_linux.go
upstream/1.1.0

Tree @upstream/1.1.0 (Download .tar.gz)

bolt_linux.go @upstream/1.1.0raw · history · blame

package bolt

import (
	"syscall"
)

var odirect = syscall.O_DIRECT

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