|
ProcLib 0.0.1.0
A cross-platform process runner.
|
#include <process.hxx>
Public Attributes | |
| PlatformExitKind | kind = PlatformExitKind::Exited |
| The kind of exit status reported by the OS. | |
| int32_t | value = -1 |
| The exit code if kind == Exited; the signal number if kind == Signaled. | |
The raw exit status reported by the OS for a completed process. Deliberately does not know whether a stop was requested by the caller (terminate()/kill()) or not — only Process itself tracks that, so it can distinguish a requested stop from a crash.
| PlatformExitKind pl::PlatformExitStatus::kind = PlatformExitKind::Exited |
The kind of exit status reported by the OS.
| int32_t pl::PlatformExitStatus::value = -1 |
The exit code if kind == Exited; the signal number if kind == Signaled.