Codebase list golang-github-boltdb-bolt / 53c6f382-55b8-4692-84d7-7132e17cc12a/main boltsync_unix.go
53c6f382-55b8-4692-84d7-7132e17cc12a/main

Tree @53c6f382-55b8-4692-84d7-7132e17cc12a/main (Download .tar.gz)

boltsync_unix.go @53c6f382-55b8-4692-84d7-7132e17cc12a/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()
}