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