Sys returns system-dependent exit information about the process. Convert it to the appropriate underlying type, such as syscall.WaitStatus on Unix, to access its contents.
()
| 159 | // the process. Convert it to the appropriate underlying |
| 160 | // type, such as syscall.WaitStatus on Unix, to access its contents. |
| 161 | func (p *ProcessState) Sys() interface{} { |
| 162 | return p.sys() |
| 163 | } |
| 164 | |
| 165 | // SysUsage returns system-dependent resource usage information about |
| 166 | // the exited process. Convert it to the appropriate underlying |
no test coverage detected