ExitCode returns the exit code of the process. This is only valid if Error() returns nil.
()
| 87 | // ExitCode returns the exit code of the process. |
| 88 | // This is only valid if Error() returns nil. |
| 89 | func (s ExitStatus) ExitCode() uint32 { |
| 90 | return s.code |
| 91 | } |
| 92 | |
| 93 | // ExitTime returns the exit time of the process |
| 94 | // This is only valid if Error() returns nil. |
no outgoing calls