From d062b0e33cdf9c82ccbd73aad63dd4c10685bdef Mon Sep 17 00:00:00 2001 From: Pete Heist Date: Mon, 29 Feb 2016 21:33:50 +0100 Subject: [PATCH] Add bolt_ppc.go to compile on 32-bit PPC platforms. --- bolt_ppc.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bolt_ppc.go diff --git a/bolt_ppc.go b/bolt_ppc.go new file mode 100644 index 0000000..645ddc3 --- /dev/null +++ b/bolt_ppc.go @@ -0,0 +1,9 @@ +// +build ppc + +package bolt + +// maxMapSize represents the largest mmap size supported by Bolt. +const maxMapSize = 0x7FFFFFFF // 2GB + +// maxAllocSize is the size used when creating array pointers. +const maxAllocSize = 0xFFFFFFF