dispatch/vendor/go.etcd.io/bbolt/boltsync_unix.go
Ken-Håvard Lieng 77543e3aed Switch to bbolt
2020-04-23 01:06:36 +02:00

9 lines
170 B
Go

// +build !windows,!plan9,!linux,!openbsd
package bbolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}