Codebase list golang-github-nebulouslabs-bolt / 5cf912de-6dd3-4909-a407-2fb00cd47756/main bolt_ppc64.go
5cf912de-6dd3-4909-a407-2fb00cd47756/main

Tree @5cf912de-6dd3-4909-a407-2fb00cd47756/main (Download .tar.gz)

bolt_ppc64.go @5cf912de-6dd3-4909-a407-2fb00cd47756/mainraw · history · blame

// +build ppc64

package bolt

// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0xFFFFFFFFFFFF // 256TB

// maxAllocSize is the size used when creating array pointers.
const maxAllocSize = 0x7FFFFFFF

// Are unaligned load/stores broken on this arch?
var brokenUnaligned = false