Sync container start

This commit is contained in:
Michael Crosby 2015-11-06 13:01:55 -08:00
parent e81513349f
commit 86ec7e8fd2
7 changed files with 50 additions and 81 deletions

View file

@ -10,6 +10,7 @@ var (
ErrContainerExists = errors.New("containerd: container already exists")
// Internal errors
errShutdown = errors.New("containerd: supervisor is shutdown")
errRootNotAbs = errors.New("containerd: rootfs path is not an absolute path")
errShutdown = errors.New("containerd: supervisor is shutdown")
errRootNotAbs = errors.New("containerd: rootfs path is not an absolute path")
errNoContainerForPid = errors.New("containerd: pid not registered for any container")
)