diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2016-06-30 13:51:07 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2016-06-30 13:51:07 -0400 |
| commit | 32153536526753edc3e80ea43512ad7ab65a3271 (patch) | |
| tree | 208293c36a235beed6eab0cbafacd1e0d7f77f64 /python/examples/arm-syscall.py | |
| parent | 2cab9f93bdcd9f64a1df20a4f3549ef7ddd25169 (diff) | |
remove sleep from sample plugins
Diffstat (limited to 'python/examples/arm-syscall.py')
| -rw-r--r-- | python/examples/arm-syscall.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/python/examples/arm-syscall.py b/python/examples/arm-syscall.py index cbd8f4bf..f94b8531 100644 --- a/python/examples/arm-syscall.py +++ b/python/examples/arm-syscall.py @@ -10,10 +10,7 @@ else: raise ValueError("Missing argument to binary.") bv = binaryninja.BinaryViewType["Mach-O"].open(target) -bv.update_analysis() - -"""Until update_analysis_and_wait is complete, sleep is necessary as the analysis is multi-threaded.""" -time.sleep(5) +bv.update_analysis_and_wait() for func in bv.functions: for il in func.low_level_il: |
