2016-11-29 21:56:36 +05:30
|
|
|
package bolt
|
|
|
|
|
|
|
|
// maxMapSize represents the largest mmap size supported by Bolt.
|
|
|
|
const maxMapSize = 0x7FFFFFFF // 2GB
|
|
|
|
|
|
|
|
// maxAllocSize is the size used when creating array pointers.
|
|
|
|
const maxAllocSize = 0xFFFFFFF
|
2017-04-06 07:20:33 +05:30
|
|
|
|
|
|
|
// Are unaligned load/stores broken on this arch?
|
|
|
|
var brokenUnaligned = false
|