mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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"
|
||
|
)
|