nonChildProcess represents a process where the calling process is not the parent process. This process is created when Load loads a container from a persisted state.
| 82 | // the parent process. This process is created when Load loads a container |
| 83 | // from a persisted state. |
| 84 | type nonChildProcess struct { |
| 85 | processPid int |
| 86 | processStartTime uint64 |
| 87 | fds []string |
| 88 | } |
| 89 | |
| 90 | func (p *nonChildProcess) start() error { |
| 91 | return errors.New("restored process cannot be started") |
nothing calls this directly
no outgoing calls
no test coverage detected