mirror of
https://github.com/containerd/containerd.git
synced 2026-07-25 16:57:13 +00:00
13 lines
176 B
Go
13 lines
176 B
Go
package execution
|
|
|
|
import "os"
|
|
|
|
type Process interface {
|
|
ID() string
|
|
Pid() int64
|
|
//Spec() *specs.Process
|
|
Wait() (uint32, error)
|
|
Signal(os.Signal) error
|
|
Status() Status
|
|
}
|