CFGResult Type
The result obtained from recovering a CFG.
Union cases
| Union case |
Description
|
|
We need to stop the current task due to a fatal error.
|
Full Usage:
MoveOn
|
We have successfully handled the task, so move on to the next task. |
|
We have successfully handled the task, but we found the function's internal state has been changed, so we need to reload caller functions, too. This result is only used in the post-recovery phase.
|
Full Usage:
StopAndReload
|
We need to stop and reload the current task. |
Full Usage:
Wait
|
We need to postpone the current task because the current function depends on other function(s) that have not been recovered yet. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsFailStop
Returns: bool
|
|
Full Usage:
this.IsMoveOn
Returns: bool
|
|
Full Usage:
this.IsMoveOnButReloadCallers
Returns: bool
|
|
Full Usage:
this.IsStopAndReload
Returns: bool
|
|
Full Usage:
this.IsWait
Returns: bool
|
|
B2R2