Status returns process status and exit information
| 62 | |
| 63 | // Status returns process status and exit information |
| 64 | type Status struct { |
| 65 | // Status of the process |
| 66 | Status ProcessStatus |
| 67 | // ExitStatus returned by the process |
| 68 | ExitStatus uint32 |
| 69 | // ExitedTime is the time at which the process died |
| 70 | ExitTime time.Time |
| 71 | } |
| 72 | |
| 73 | // ProcessInfo provides platform specific process information |
| 74 | type ProcessInfo struct { |