Codebase list golang-github-boltdb-bolt / a2201f55-2708-4aff-89a8-de70875ffcf9/upstream bolt_linux.go
a2201f55-2708-4aff-89a8-de70875ffcf9/upstream

Tree @a2201f55-2708-4aff-89a8-de70875ffcf9/upstream (Download .tar.gz)

bolt_linux.go @a2201f55-2708-4aff-89a8-de70875ffcf9/upstreamraw · history · blame

package bolt

import (
	"syscall"
)

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