containerd/execution/process.go
Kenfe-Mickael Laventure 7dd69a8597 execution: use provided process ID for state
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-12-16 08:49:09 -08:00

12 lines
183 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
}