Merge pull request #3360 from danishprakash/remove-pausing

libcontainer: remove "pausing" state
This commit is contained in:
Sebastiaan van Stijn
2022-02-01 23:40:31 +01:00
committed by GitHub
2 changed files with 1 additions and 5 deletions

View File

@@ -99,7 +99,7 @@ type Container interface {
// Restore restores the checkpointed container to a running state using the criu(8) utility.
Restore(process *Process, criuOpts *CriuOpts) error
// If the Container state is RUNNING or CREATED, sets the Container state to PAUSING and pauses
// If the Container state is RUNNING or CREATED, sets the Container state to PAUSED and pauses
// the execution of any user processes. Asynchronously, when the container finished being paused the
// state is changed to PAUSED.
// If the Container state is PAUSED, do nothing.