summaryrefslogtreecommitdiffstats
path: root/devices/cpu_other.go
blob: 95d183f2d0f09fb97483ecee8ffb3ee164bc48d0 (plain)
1
2
3
4
5
6
7
8
9
// +build !linux

package devices

import "github.com/shirou/gopsutil/cpu"

func CpuCount() (int, error) {
	return cpu.Counts(false)
}