aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/containerd/cgroups/state.go
blob: f1d7b7b6081003cd06b86be1119727d8d5f9460e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package cgroups

// State is a type that represents the state of the current cgroup
type State string

const (
	Unknown  State = ""
	Thawed   State = "thawed"
	Frozen   State = "frozen"
	Freezing State = "freezing"
	Deleted  State = "deleted"
)