restoredState is the same as the running state but also has associated checkpoint information that maybe need destroyed when the container is stopped and destroy is called.
| 196 | // restoredState is the same as the running state but also has associated checkpoint |
| 197 | // information that maybe need destroyed when the container is stopped and destroy is called. |
| 198 | type restoredState struct { |
| 199 | imageDir string |
| 200 | c *Container |
| 201 | } |
| 202 | |
| 203 | func (r *restoredState) status() Status { |
| 204 | return Running |
nothing calls this directly
no outgoing calls
no test coverage detected