mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
a78a0266c4
Update vendor github.com/boltdb/bolt to take care of the issue #1354.
12 lines
333 B
Go
12 lines
333 B
Go
// +build mips64le
|
|
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
|
|
|
|
// brokenUnaligned Are unaligned load/stores broken on this arch?
|
|
var brokenUnaligned = false
|