aboutsummaryrefslogtreecommitdiff
path: root/bolt_openbsd.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move code to src/ and tests/EuAndreh2024-10-251-27/+0
|
* add WriteToFlag to TxXiang Li2015-11-061-2/+0
| | | | | | For in memory workload, it does not make sense to use o_direct to copy the file. Adding a option to clear out o_direct and for other future cases.
* Fix bolt on OpenBSD.Josh Rickmar2014-09-181-0/+29
OpenBSD does not include a UBC kernel and writes must be synchronized with the msync(2) syscall. In addition, the NoSync field of the DB struct should be ignored on OpenBSD, since unlike other platforms, missing msyncs will result in data corruption. Depends on PR #258. Fixes #257.