mirror of
https://github.com/slackhq/nebula.git
synced 2026-05-16 12:57:38 +02:00
12 lines
338 B
Go
12 lines
338 B
Go
//go:build !linux || android || e2e_testing
|
|
|
|
package util
|
|
|
|
// PinThreadToCPU is a no-op outside Linux: only Linux exposes a stable
|
|
// per-thread CPU affinity API and only Linux has XPS-driven TX ring
|
|
// selection in the first place. On every other platform there's nothing
|
|
// to fix here.
|
|
func PinThreadToCPU(_ int) error {
|
|
return nil
|
|
}
|