diff options
Diffstat (limited to 'vendor/github.com/containerd/cgroups/state.go')
-rw-r--r-- | vendor/github.com/containerd/cgroups/state.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/containerd/cgroups/state.go b/vendor/github.com/containerd/cgroups/state.go new file mode 100644 index 000000000..f1d7b7b60 --- /dev/null +++ b/vendor/github.com/containerd/cgroups/state.go @@ -0,0 +1,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" +) |