1 Star 1 Fork 0

蒋蒋蒋/bolt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bolt_openbsd.go 518 Bytes
一键复制 编辑 原始数据 按行查看 历史
XiangLi 提交于 2015-11-06 10:49 . add WriteToFlag to Tx
package bolt
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()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mr_j8080/bolt.git
git@gitee.com:mr_j8080/bolt.git
mr_j8080
bolt
bolt
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385