state.go 245 B

123456789101112
  1. package cgroups
  2. // State is a type that represents the state of the current cgroup
  3. type State string
  4. const (
  5. Unknown State = ""
  6. Thawed State = "thawed"
  7. Frozen State = "frozen"
  8. Freezing State = "freezing"
  9. Deleted State = "deleted"
  10. )