Pid returns the pid of the process The pid is not set until start is called and returns
()
| 116 | // Pid returns the pid of the process |
| 117 | // The pid is not set until start is called and returns |
| 118 | func (p *process) Pid() uint32 { |
| 119 | return p.pid |
| 120 | } |
| 121 | |
| 122 | // Start starts the exec process |
| 123 | func (p *process) Start(ctx context.Context) error { |