1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00

35 lines
619 B
Go
Raw Normal View History

2019-08-26 16:53:38 +02:00
// 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.
2021-04-01 21:07:21 +11:00
//go:build aix
2020-08-25 08:12:16 +10:00
// +build aix
2019-08-26 16:53:38 +02:00
package cpu
const (
// getsystemcfg constants
_SC_IMPL = 2
_IMPL_POWER8 = 0x10000
_IMPL_POWER9 = 0x20000
)
2020-08-25 08:12:16 +10:00
func archInit() {
impl := getsystemcfg(_SC_IMPL)
2019-08-26 16:53:38 +02:00
if impl&_IMPL_POWER8 != 0 {
PPC64.IsPOWER8 = true
}
if impl&_IMPL_POWER9 != 0 {
2021-06-05 22:17:49 +10:00
PPC64.IsPOWER8 = true
2019-08-26 16:53:38 +02:00
PPC64.IsPOWER9 = true
}
Initialized = true
}
func getsystemcfg(label int) (n uint64) {
r0, _ := callgetsystemcfg(label)
n = uint64(r0)
return
}