2019-02-18 06:20:26 +05:30
|
|
|
// +build mips64 mips64le
|
2016-11-29 21:56:36 +05:30
|
|
|
|
2019-02-18 06:20:26 +05:30
|
|
|
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 = 0x8000000000 // 512GB
|
2016-11-29 21:56:36 +05:30
|
|
|
|
|
|
|
// maxAllocSize is the size used when creating array pointers.
|
|
|
|
const maxAllocSize = 0x7FFFFFFF
|