Files
kata-containers/src/runtime/pkg/resourcecontrol/utils_darwin.go
Eric Ernst f137048be3 resource-control: add helper function for setting CPU affinity
Let's abstract the CPU affinity

Fixes: #6044

Signed-off-by: Eric Ernst <eric_ernst@apple.com>
2023-01-11 17:55:53 -08:00

11 lines
182 B
Go

// Copyright (c) 2023 Apple Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
package resourcecontrol
func SetThreadAffinity(threadID int, cpuSetSlice []int) error {
return nil
}