2019-02-17 19:50:26 -05:00
|
|
|
// +build mips64 mips64le
|
2016-11-29 11:26:36 -05:00
|
|
|
|
2019-02-17 19:50:26 -05:00
|
|
|
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 = 0x8000000000 // 512GB
|
2016-11-29 11:26:36 -05:00
|
|
|
|
|
|
|
// maxAllocSize is the size used when creating array pointers.
|
|
|
|
const maxAllocSize = 0x7FFFFFFF
|