crazy core pinning junk

This commit is contained in:
JackDoan
2026-08-03 10:51:37 -05:00
parent 42c937d86f
commit e04473f30b
9 changed files with 943 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build !linux
package cpupick
// perfCPUs is Linux-only sysfs walking; elsewhere report "no distinction".
// Default already returns nil off-Linux (util.AllowedCPUs has no answer
// there), so this exists to keep the package compiling everywhere.
func perfCPUs(allowed []int) ([]int, string) {
return allowed, ""
}