1
0
Fork 0
qurl/vendor/go.etcd.io/bbolt/bolt_linux.go

11 lines
172 B
Go
Raw Normal View History

2018-11-11 16:56:30 -09:00
package bbolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}