1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 14:48:55 +00:00
Files
os/vendor/github.com/boltdb/bolt/boltsync_unix.go
Darren Shepherd 03db5d1058 Update vendor/
2016-06-06 08:08:00 -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()
}