mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
11 lines
139 B
Go
11 lines
139 B
Go
//go:build !linux && !windows
|
|
// +build !linux,!windows
|
|
|
|
package sysinfo
|
|
|
|
import "runtime"
|
|
|
|
func numCPU() int {
|
|
return runtime.NumCPU()
|
|
}
|