You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
519 B
28 lines
519 B
6 years ago
|
package bbolt
|
||
8 years ago
|
|
||
|
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()
|
||
|
}
|