Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com> Upstream-commit: 7acea2a243d25c061d12a2a2f8bbd4e5955a85f4 Component: engine
13 lines
245 B
Go
13 lines
245 B
Go
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"
|
|
)
|