shirou_gopsutil/host/host_posix.go

16 lines
357 B
Go
Raw Normal View History

2023-09-16 17:44:58 +08:00
//go:build linux || freebsd || openbsd || netbsd || darwin || solaris
// +build linux freebsd openbsd netbsd darwin solaris
package host
import "golang.org/x/sys/unix"
2020-09-11 19:51:20 +08:00
func KernelArch() (string, error) {
var utsname unix.Utsname
err := unix.Uname(&utsname)
if err != nil {
return "", err
}
return unix.ByteSliceToString(utsname.Machine[:]), nil
}