-
Notifications
You must be signed in to change notification settings - Fork 7
process return_code
Alairion edited this page Jun 13, 2019
·
2 revisions
nes::process::return_code
(1) return_code_type return_code() const noexcept;
- Returns the return code of the process. The return code is stored after a call to
kill
orjoin
, so this function only returns a copy of it, and can be called multiple times.
None.
- Returns the return code of the process if
kill
orjoin
have been called, otherwise returnsreturn_code_type{}
.
- Constant.
- Does not throw.