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