diff options
Diffstat (limited to 'src/bolt_amd64.go')
-rw-r--r-- | src/bolt_amd64.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bolt_amd64.go b/src/bolt_amd64.go new file mode 100644 index 0000000..98fafdb --- /dev/null +++ b/src/bolt_amd64.go @@ -0,0 +1,10 @@ +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 + +// Are unaligned load/stores broken on this arch? +var brokenUnaligned = false |