Tizen_4.0 base
[platform/upstream/docker-engine.git] / vendor / github.com / containerd / containerd / supervisor / types.go
1 package supervisor
2
3 // State constants used in Event types
4 const (
5         StateStart        = "start-container"
6         StatePause        = "pause"
7         StateResume       = "resume"
8         StateExit         = "exit"
9         StateStartProcess = "start-process"
10         StateOOM          = "oom"
11         StateLive         = "live"
12 )