17244: Make -cgroup-parent-subsystem=X work in cgroups v2.
[arvados.git] / lib / crunchrun / executor.go
index 1ed460acd966c3a64d32e11d749a6ac04e8260f1..29abab631f2c03bba9cd2deb7d49bd56571b4ab0 100644 (file)
@@ -4,10 +4,10 @@
 package crunchrun
 
 import (
+       "context"
        "io"
 
        "git.arvados.org/arvados.git/sdk/go/arvados"
-       "golang.org/x/net/context"
 )
 
 type bindmount struct {
@@ -51,8 +51,10 @@ type containerExecutor interface {
        // Start the container
        Start() error
 
-       // CID the container will belong to
-       CgroupID() string
+       // Process ID of a process in the container (return 0 or
+       // negative if container is finished or no process has started
+       // yet)
+       Pid() int
 
        // Stop the container immediately
        Stop() error