Codebase list golang-github-nebulouslabs-bolt / 3d050d74-e06f-4205-8539-b99866d53a79/main boltsync_unix.go
3d050d74-e06f-4205-8539-b99866d53a79/main

Tree @3d050d74-e06f-4205-8539-b99866d53a79/main (Download .tar.gz)

boltsync_unix.go @3d050d74-e06f-4205-8539-b99866d53a79/mainraw · history · blame

1
2
3
4
5
6
7
8
// +build !windows,!plan9,!linux,!openbsd

package bolt

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