diff options
| author | Brian Potchik <brian@vector35.com> | 2025-03-10 15:27:53 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-03-10 15:27:53 -0400 |
| commit | f5ff6f5dd53dd4f812bffebbed8484655bcbc48c (patch) | |
| tree | 834c931999aad6b1f7857a4fb62f390cab95316f /python/binaryview.py | |
| parent | 6a8a2d5f719506ffea5e4779b28924b211516671 (diff) | |
Add support for recoverable analysis abort.
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 81a0e5e7..753f589d 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -4931,9 +4931,8 @@ class BinaryView: def abort_analysis(self) -> None: """ - ``abort_analysis`` will abort the currently running analysis. - - .. warning:: This method should be considered non-recoverable and generally only used when shutdown is imminent after stopping. + ``abort_analysis`` aborts analysis and suspends the workflow machine. This operation is recoverable, and the workflow machine + can be re-enabled via the ``enable`` API on WorkflowMachine. :rtype: None """ |
