Raise maxMapSize from 256MB to 2GB on 386, arm.

Fixes #260 and #277.
master
Tamás Gulácsi 2015-01-12 15:01:25 +01:00
parent ee986d7220
commit 51dd6b9ae3
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package bolt
// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0xFFFFFFF // 256MB
const maxMapSize = 0x7FFFFFFF // 2GB

View File

@ -1,4 +1,4 @@
package bolt
// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0xFFFFFFF // 256MB
const maxMapSize = 0x7FFFFFFF // 2GB