4d90afb425
mostly to handle build directives in 1.17.
11 lines
190 B
Go
11 lines
190 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package cgutil
|
|
|
|
import (
|
|
"github.com/hashicorp/go-hclog"
|
|
)
|
|
|
|
func NewCpusetManager(_ string, _ hclog.Logger) CpusetManager { return noopCpusetManager{} }
|