oci: join crio-conmon for cgroupfs
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
dd2b4a8907
commit
c199f63dba
31 changed files with 3013 additions and 5 deletions
12
vendor/github.com/containerd/cgroups/state.go
generated
vendored
Normal file
12
vendor/github.com/containerd/cgroups/state.go
generated
vendored
Normal file
|
@ -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"
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue