Initial commit

This commit is contained in:
2018-11-12 01:56:30 +00:00
committed by cdramey
parent 669da74e7e
commit 208e13d2a8
32 changed files with 5211 additions and 0 deletions

10
vendor/go.etcd.io/bbolt/bolt_386.go generated vendored Normal file
View File

@ -0,0 +1,10 @@
package bbolt
// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0x7FFFFFFF // 2GB
// maxAllocSize is the size used when creating array pointers.
const maxAllocSize = 0xFFFFFFF
// Are unaligned load/stores broken on this arch?
var brokenUnaligned = false