1
0
mirror of https://github.com/rancher/os.git synced 2025-07-07 03:48:38 +00:00
os/vendor/github.com/boltdb/bolt/bolt_linux.go
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -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()))
}