1
0
mirror of https://github.com/rancher/os.git synced 2025-07-02 17:51:49 +00:00
os/vendor/github.com/boltdb/bolt/boltsync_unix.go
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -07:00

9 lines
169 B
Go

// +build !windows,!plan9,!linux,!openbsd
package bolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}