loadedState is used whenever a container is restored, loaded, or setting additional processes inside and it should not be destroyed when it is exiting.
| 224 | // loadedState is used whenever a container is restored, loaded, or setting additional |
| 225 | // processes inside and it should not be destroyed when it is exiting. |
| 226 | type loadedState struct { |
| 227 | c *Container |
| 228 | s Status |
| 229 | } |
| 230 | |
| 231 | func (n *loadedState) status() Status { |
| 232 | return n.s |
nothing calls this directly
no outgoing calls
no test coverage detected