erigon-pulse/ethdb/mdbx/mdbxarch/width.go

8 lines
311 B
Go
Raw Normal View History

2021-06-16 10:57:58 +00:00
// Package mdbxarch contains some architecture detection constants. The
2020-10-28 03:18:10 +00:00
// primary reason the package exists is because the constant definitions are
// scary and some will not pass linters.
2021-05-20 16:46:12 +00:00
package mdbxarch
2020-10-28 03:18:10 +00:00
// Width64 is 1 for 64-bit architectures and 0 otherwise.
const Width64 = 1 << (^uintptr(0) >> 63) / 2