fdf750e4d4
* Update blevesearch v0.8.1 -> v1.0.7 * make vendor Co-authored-by: zeripath <art27@cantab.net>
27 lines
519 B
Go
Vendored
27 lines
519 B
Go
Vendored
package bbolt
|
|
|
|
import (
|
|
"syscall"
|
|
"unsafe"
|
|
)
|
|
|
|
const (
|
|
msAsync = 1 << iota // perform asynchronous writes
|
|
msSync // perform synchronous writes
|
|
msInvalidate // invalidate cached data
|
|
)
|
|
|
|
func msync(db *DB) error {
|
|
_, _, errno := syscall.Syscall(syscall.SYS_MSYNC, uintptr(unsafe.Pointer(db.data)), uintptr(db.datasz), msInvalidate)
|
|
if errno != 0 {
|
|
return errno
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func fdatasync(db *DB) error {
|
|
if db.data != nil {
|
|
return msync(db)
|
|
}
|
|
return db.file.Sync()
|
|
}
|