erigon-pulse/ethdb/mdbx/mdbxarch/width.go
2021-06-16 13:57:58 +03:00

8 lines
311 B
Go

// Package mdbxarch 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