1package bolt
2
3// maxMapSize represents the largest mmap size supported by Bolt.
4const maxMapSize = 0xFFFFFFFFFFFF // 256TB
5
6// maxAllocSize is the size used when creating array pointers.
7const maxAllocSize = 0x7FFFFFFF
8
9// Are unaligned load/stores broken on this arch?
10var brokenUnaligned = false
11