Remove process

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2015-11-06 16:57:55 -08:00
parent c787ecada3
commit cb7ab16427
2 changed files with 0 additions and 7 deletions

View file

@ -4,7 +4,6 @@ type Container interface {
ID() string
Start() error
Pid() (int, error)
// Process() Process
SetExited(status int)
Delete() error
}

View file

@ -1,6 +0,0 @@
package containerd
type Process interface {
// Signal sends a signal to the process.
SetExited(status int)
}