Gitiles
Code Review
Sign In
gerrit.opencord.org
/
voltha-lib-go
/
e131155fe2ee062eb7744551a0b84849c2dac9fb
/
.
/
vendor
/
go.etcd.io
/
bbolt
/
bolt_linux.go
blob: 7707bcacf03a13bf440f6d4779e0013c95faa874 [
file
] [
log
] [
blame
]
package bbolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}