1
0
mirror of https://github.com/rancher/os.git synced 2025-06-30 16:51:47 +00:00
os/vendor/github.com/boltdb/bolt/bolt_linux.go
2016-06-06 08:08:00 -07:00

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