f36feb2ed4
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
12 lines
245 B
Go
12 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"
|
|
)
|