From 1d505f6875d27dccafb777853a51045f82888f00 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 20 May 2019 10:56:00 -0400 Subject: Update vendor of buildah and containers/images Mainly add support for podman build using --overlay mounts. Updates containers/image also adds better support for new registries.conf file. Signed-off-by: Daniel J Walsh --- vendor/github.com/etcd-io/bbolt/bolt_openbsd.go | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 vendor/github.com/etcd-io/bbolt/bolt_openbsd.go (limited to 'vendor/github.com/etcd-io/bbolt/bolt_openbsd.go') diff --git a/vendor/github.com/etcd-io/bbolt/bolt_openbsd.go b/vendor/github.com/etcd-io/bbolt/bolt_openbsd.go new file mode 100644 index 000000000..d7f50358e --- /dev/null +++ b/vendor/github.com/etcd-io/bbolt/bolt_openbsd.go @@ -0,0 +1,27 @@ +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() +} -- cgit v1.2.3-54-g00ecf