
Signed-off-by: John Howard <jhoward@microsoft.com> This is the maintained version of boltdb, which includes the Windows-specific fix detailed in https://github.com/etcd-io/bbolt/pull/122
11 lines
172 B
Go
11 lines
172 B
Go
package bbolt
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// fdatasync flushes written data to a file descriptor.
|
|
func fdatasync(db *DB) error {
|
|
return syscall.Fdatasync(int(db.file.Fd()))
|
|
}
|