1
0
Fork 0
mirror of https://github.com/mjl-/mox.git synced 2025-01-15 18:06:27 +03:00
mox/vendor/go.etcd.io/bbolt/bolt_linux.go

11 lines
172 B
Go
Raw Normal View History

2023-01-30 16:27:06 +03:00
package bbolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}