summaryrefslogtreecommitdiffstats
path: root/tester/covoar/TraceReaderLogQEMU.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 16:32:23 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commitd566c2f16b47a3fb98f1b7416d7820e393976f9e (patch)
tree175c212e61b1555c2f5d3ad470a258214043fc83 /tester/covoar/TraceReaderLogQEMU.h
parentReportsHtml.cc: Initialize lastState_m (diff)
downloadrtems-tools-d566c2f16b47a3fb98f1b7416d7820e393976f9e.tar.bz2
Remove objdumpProcessor global variable
- Replaced objdumpProcessor in app_common with a local variable in TraceConverter.cc and covoar.cc - Added objdumpProcessor as a parameter for GenerateReports() and the processFile() member function of TraceReaderBase and its derived classes - Changed previous objdumpProcessor member functions calls from pointer to direct call syntax
Diffstat (limited to 'tester/covoar/TraceReaderLogQEMU.h')
-rw-r--r--tester/covoar/TraceReaderLogQEMU.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tester/covoar/TraceReaderLogQEMU.h b/tester/covoar/TraceReaderLogQEMU.h
index fb1d020..8ee5651 100644
--- a/tester/covoar/TraceReaderLogQEMU.h
+++ b/tester/covoar/TraceReaderLogQEMU.h
@@ -38,13 +38,13 @@ namespace Trace {
* @a file and adds it to the specified @a executableInformation.
*
* @param[in] file is the coverage file to process
- * @param[in] executableInformation is the information for an
- * associated executable
+ * @param[in] objdumpProcessor the processor for the object dump
*
* @return Returns TRUE if the method succeeded and FALSE if it failed.
*/
virtual bool processFile(
- const char* const file
+ const char* const file,
+ Coverage::ObjdumpProcessor& objdumpProcessor
);
};