2019-02-17 19:50:26 -05:00
|
|
|
// +build mips mipsle
|
|
|
|
|
|
|
|
package bbolt
|
2016-11-29 11:26:36 -05:00
|
|
|
|
|
|
|
// maxMapSize represents the largest mmap size supported by Bolt.
|
2019-02-17 19:50:26 -05:00
|
|
|
const maxMapSize = 0x40000000 // 1GB
|
2016-11-29 11:26:36 -05:00
|
|
|
|
|
|
|
// maxAllocSize is the size used when creating array pointers.
|
|
|
|
const maxAllocSize = 0xFFFFFFF
|