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/boltdb/bolt/bolt_openbsd.go | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 vendor/github.com/boltdb/bolt/bolt_openbsd.go (limited to 'vendor/github.com/boltdb/bolt/bolt_openbsd.go') diff --git a/vendor/github.com/boltdb/bolt/bolt_openbsd.go b/vendor/github.com/boltdb/bolt/bolt_openbsd.go deleted file mode 100644 index 7058c3d73..000000000 --- a/vendor/github.com/boltdb/bolt/bolt_openbsd.go +++ /dev/null @@ -1,27 +0,0 @@ -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() -} -- cgit v1.2.3-54-g00ecf