bolt_386.go 291 B

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