Implement journal replay

Add addprocess event for addtional processes

Add more api process information
This commit is contained in:
Michael Crosby
2015-11-10 14:57:10 -08:00
parent 6ff2239019
commit 17d9c10e2d
10 changed files with 296 additions and 62 deletions

View File

@@ -1,9 +1,14 @@
package containerd
import "os"
import (
"os"
"github.com/opencontainers/specs"
)
type Process interface {
Pid() int
Pid() (int, error)
Spec() specs.Process
Signal(os.Signal) error
}