github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/containerd/supervisor/types.go (about)

     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  )