You've already forked runc
mirror of
https://github.com/opencontainers/runc.git
synced 2025-07-30 17:43:06 +03:00
Eliminating checkpoint state in container
Signed-off-by: Rajasekaran <rajasec79@gmail.com>
This commit is contained in:
@ -27,9 +27,6 @@ const (
|
|||||||
// The container exists, but all its processes are paused.
|
// The container exists, but all its processes are paused.
|
||||||
Paused
|
Paused
|
||||||
|
|
||||||
// The container exists, but its state is saved on disk
|
|
||||||
Checkpointed
|
|
||||||
|
|
||||||
// The container does not exist.
|
// The container does not exist.
|
||||||
Destroyed
|
Destroyed
|
||||||
)
|
)
|
||||||
@ -44,8 +41,6 @@ func (s Status) String() string {
|
|||||||
return "pausing"
|
return "pausing"
|
||||||
case Paused:
|
case Paused:
|
||||||
return "paused"
|
return "paused"
|
||||||
case Checkpointed:
|
|
||||||
return "checkpointed"
|
|
||||||
case Destroyed:
|
case Destroyed:
|
||||||
return "destroyed"
|
return "destroyed"
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user