mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6c7835050e
This implements cgroup.Apply() using the systemd apis. We create a transient unit called "docker-$id.scope" that contains the container processes. We also have a way to set unit specific properties, currently only defining the Slice to put the scope in. Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
15 lines
209 B
Go
15 lines
209 B
Go
// +build !linux
|
|
|
|
package cgroups
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func useSystemd() bool {
|
|
return false
|
|
}
|
|
|
|
func systemdApply(c *Cgroup, pid int) (ActiveCgroup, error) {
|
|
return nil, fmt.Errorf("Systemd not supported")
|
|
}
|