mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
5935296367
Signed-off-by: John Hwang <john.f.hwang@gmail.com>
10 lines
132 B
Go
10 lines
132 B
Go
// +build go1.9
|
|
|
|
package bitset
|
|
|
|
import "math/bits"
|
|
|
|
func trailingZeroes64(v uint64) uint {
|
|
return uint(bits.TrailingZeros64(v))
|
|
}
|