1
0
Fork 0
mirror of https://github.com/mjl-/mox.git synced 2025-01-15 09:56:27 +03:00
mox/vendor/go.etcd.io/bbolt/bolt_linux.go
Mechiel Lukkien cb229cb6cf
mox!
2023-01-30 14:27:06 +01:00

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