Files
podman/vendor/github.com/containers/common/pkg/sysinfo/numcpu_linux.go
Valentin Rothberg 9e9bcec9ec history: correctly set tags
Requires vendoring fixes from c/common and to update the transformation
code.  Also add a test to avoid future regressions.

Fixes: #17763
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
2023-05-02 16:21:09 +02:00

21 lines
452 B
Go

//go:build linux
// +build linux
package sysinfo
import "golang.org/x/sys/unix"
// numCPU queries the system for the count of threads available
// for use to this process.
//
// Returns 0 on errors. Use |runtime.NumCPU| in that case.
func numCPU() int {
// Gets the affinity mask for a process: The very one invoking this function.
var mask unix.CPUSet
err := unix.SchedGetaffinity(0, &mask)
if err != nil {
return 0
}
return mask.Count()
}