xmtop/devices/cpu_other.go

10 lines
135 B
Go

// +build !linux
package devices
import "github.com/shirou/gopsutil/cpu"
func CpuCount() (int, error) {
return cpu.Counts(false)
}