mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 08:25:43 +03:00
10 lines
179 B
Go
10 lines
179 B
Go
package docker
|
|
|
|
import (
|
|
"github.com/opencontainers/runc/libcontainer/cgroups"
|
|
)
|
|
|
|
func setCPUSetCgroup(path string, pid int) error {
|
|
return cgroups.WriteCgroupProc(path, pid)
|
|
}
|