bolt_mipsx.go 262 B

12345678910
  1. //go:build mips || mipsle
  2. // +build mips mipsle
  3. package bbolt
  4. // maxMapSize represents the largest mmap size supported by Bolt.
  5. const maxMapSize = 0x40000000 // 1GB
  6. // maxAllocSize is the size used when creating array pointers.
  7. const maxAllocSize = 0xFFFFFFF