containerd/execution/process.go
Kenfe-Mickael Laventure abaa421141 execution/oci: use Status type instead of string
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-12-16 08:49:09 -08:00

13 lines
200 B
Go

package execution
import "os"
type Process interface {
Container() *Container
ID() string
Pid() int64
//Spec() *specs.Process
Wait() (uint32, error)
Signal(os.Signal) error
Status() Status
}