...

Source file src/go.etcd.io/bbolt/bolt_mipsx.go

Documentation: go.etcd.io/bbolt

     1  //go:build mips || mipsle
     2  // +build mips mipsle
     3  
     4  package bbolt
     5  
     6  // maxMapSize represents the largest mmap size supported by Bolt.
     7  const maxMapSize = 0x40000000 // 1GB
     8  
     9  // maxAllocSize is the size used when creating array pointers.
    10  const maxAllocSize = 0xFFFFFFF
    11  

View as plain text