mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-08-14 12:38:35 +00:00
10 lines
250 B
Go
10 lines
250 B
Go
//go:build mips64 || mips64le
|
|
|
|
package common
|
|
|
|
// MaxMapSize represents the largest mmap size supported by Bolt.
|
|
const MaxMapSize = 0x8000000000 // 512GB
|
|
|
|
// MaxAllocSize is the size used when creating array pointers.
|
|
const MaxAllocSize = 0x7FFFFFFF
|