mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7acea2a243
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@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"
|
|
)
|