mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
75019baadd
* deps: update golang.org/x/sys * deps: update imports to gopsutil/v3 * chore: make update-vendor
16 lines
280 B
Go
16 lines
280 B
Go
// +build linux freebsd openbsd darwin solaris
|
|
|
|
package host
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func KernelArch() (string, error) {
|
|
var utsname unix.Utsname
|
|
err := unix.Uname(&utsname)
|
|
return string(utsname.Machine[:bytes.IndexByte(utsname.Machine[:], 0)]), err
|
|
}
|