| Abhay Kumar | 40252eb | 2025-10-13 13:25:53 +0000 | [diff] [blame^] | 1 | //go:build mips64 || mips64le |
| 2 | |||||
| 3 | package common | ||||
| 4 | |||||
| 5 | // MaxMapSize represents the largest mmap size supported by Bolt. | ||||
| 6 | const MaxMapSize = 0x8000000000 // 512GB | ||||
| 7 | |||||
| 8 | // MaxAllocSize is the size used when creating array pointers. | ||||
| 9 | const MaxAllocSize = 0x7FFFFFFF | ||||