mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
10 lines
172 B
Go
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()))
|
|
}
|