bbolt/boltsync_unix.go
Mark Ayers 248fddc1ec
Update buildtags
Signed-off-by: Mark Ayers <mark@philoserf.com>
2024-12-28 17:42:28 -05:00

9 lines
180 B
Go

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