1
0
mirror of https://github.com/TwiN/gatus.git synced 2025-03-05 02:21:56 +01:00
gatus/vendor/go.etcd.io/bbolt/bolt_linux.go
2021-02-05 22:11:25 -05:00

11 lines
172 B
Go

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