GetPpid returns the parent pid from the parameter.
()
| 274 | |
| 275 | // GetPpid returns the parent pid from the parameter. |
| 276 | func (pars Params) GetPpid() (uint32, error) { |
| 277 | return pars.getPid(params.ProcessParentID) |
| 278 | } |
| 279 | |
| 280 | // MustGetPpid returns the parent pid parameter. It panics if |
| 281 | // an error occurs while trying to get the pid parameter. |
no test coverage detected