| 117 | } |
| 118 | |
| 119 | type containerProcess struct { |
| 120 | cmd *exec.Cmd |
| 121 | comm *processComm |
| 122 | config *initConfig |
| 123 | manager cgroups.Manager |
| 124 | fds []string |
| 125 | process *Process |
| 126 | bootstrapData io.Reader |
| 127 | container *Container |
| 128 | } |
| 129 | |
| 130 | func (p *containerProcess) pid() int { |
| 131 | return p.cmd.Process.Pid |
nothing calls this directly
no outgoing calls
no test coverage detected