mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-01-07 19:38:57 +03:00
9 lines
236 B
Go
9 lines
236 B
Go
|
// +build mips64
|
||
|
package bolt
|
||
|
|
||
|
// maxMapSize represents the largest mmap size supported by Bolt.
|
||
|
const maxMapSize = 0xFFFFFFFFFFFF // 256TB
|
||
|
|
||
|
// maxAllocSize is the size used when creating array pointers.
|
||
|
const maxAllocSize = 0x7FFFFFFF
|