From 52ff048b94e37ff41faf5be222da6517d912a6ae Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Mon, 19 Nov 2018 12:26:16 -0500 Subject: Update analysis_info documentation. --- python/binaryview.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'python') diff --git a/python/binaryview.py b/python/binaryview.py index 60ccf91f..cf1d6167 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -1121,7 +1121,11 @@ class BinaryView(object): @property def analysis_info(self): - """Relevant analysis information with list of functions under active analysis (read-only)""" + """Provides instantaneous analysis state information and a list of current functions under analysis (read-only). + All times are given in units of milliseconds (ms). Per function `analysis_time` is the aggregation of time spend + performing incremental updates and is reset on a full function update. Per function `update_count` tracks the + current number of incremental updates and is reset on a full function update. Per function `submit_count` tracks the + current number of full updates that have completed. Note that the `submit_count` is currently not reset across analysis updates.""" info_ref = core.BNGetAnalysisInfo(self.handle) info = info_ref[0] active_info_list = [] -- cgit v1.3.1