summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/boltdb/bolt/bolt_mips.go
blob: 1c06342ea74d2be29d2e0f7567844c9267900b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build mips
package bolt

// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0x40000000 // 1GB

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

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