mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d48c8b70a1
Go 1.17 requires golang.org/x/sys a76c4d0a0096537dc565908b53073460d96c8539 (May 8,
2021) or later, see https://github.com/golang/go/issues/45702. While this seems
to affect macOS only, let's update to the latest version.
full diff: d19ff857e8...63515b42dc
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
34 lines
619 B
Go
34 lines
619 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build aix
|
|
// +build aix
|
|
|
|
package cpu
|
|
|
|
const (
|
|
// getsystemcfg constants
|
|
_SC_IMPL = 2
|
|
_IMPL_POWER8 = 0x10000
|
|
_IMPL_POWER9 = 0x20000
|
|
)
|
|
|
|
func archInit() {
|
|
impl := getsystemcfg(_SC_IMPL)
|
|
if impl&_IMPL_POWER8 != 0 {
|
|
PPC64.IsPOWER8 = true
|
|
}
|
|
if impl&_IMPL_POWER9 != 0 {
|
|
PPC64.IsPOWER8 = true
|
|
PPC64.IsPOWER9 = true
|
|
}
|
|
|
|
Initialized = true
|
|
}
|
|
|
|
func getsystemcfg(label int) (n uint64) {
|
|
r0, _ := callgetsystemcfg(label)
|
|
n = uint64(r0)
|
|
return
|
|
}
|