summaryrefslogtreecommitdiffhomepage
path: root/runsc/cgroup
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/cgroup')
-rw-r--r--runsc/cgroup/cgroup.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/runsc/cgroup/cgroup.go b/runsc/cgroup/cgroup.go
index 15071387b..2887f3d7f 100644
--- a/runsc/cgroup/cgroup.go
+++ b/runsc/cgroup/cgroup.go
@@ -241,6 +241,11 @@ func (c *Cgroup) Uninstall() error {
return nil
}
+// Join adds the current process to the all controllers.
+func (c *Cgroup) Join() error {
+ return c.Add(0)
+}
+
// Add adds given process to all controllers.
func (c *Cgroup) Add(pid int) error {
for key := range controllers {