erigon-pulse/ethdb/mdbx/mdbxarch/width.go
2021-05-20 23:46:12 +07:00

8 lines
312 B
Go

// Package lmdbarch contains some architecture detection constants. The
// primary reason the package exists is because the constant definitions are
// scary and some will not pass linters.
package mdbxarch
// Width64 is 1 for 64-bit architectures and 0 otherwise.
const Width64 = 1 << (^uintptr(0) >> 63) / 2