10 lines
172 B
Go
10 lines
172 B
Go
// +build !linux
|
|
|
|
package cgutil
|
|
|
|
import (
|
|
"github.com/hashicorp/go-hclog"
|
|
)
|
|
|
|
func NewCpusetManager(_ string, _ hclog.Logger) CpusetManager { return noopCpusetManager{} }
|