1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-05 09:48:48 +00:00
Files
gatus/vendor/github.com/boltdb/bolt/bolt_linux.go

11 lines
171 B
Go

package bolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}