2016-11-29 17:26:36 +01:00
|
|
|
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 03:50:33 +02:00
|
|
|
|
|
|
|
// Are unaligned load/stores broken on this arch?
|
|
|
|
var brokenUnaligned = false
|