mox/vendor/go.etcd.io/bbolt/boltsync_unix.go
Mechiel Lukkien cb229cb6cf
mox!
2023-01-30 14:27:06 +01:00

8 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()
}