1
0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 02:30:48 +01:00
gatus/vendor/github.com/boltdb/bolt/boltsync_unix.go

9 lines
169 B
Go

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