summaryrefslogtreecommitdiffstats
path: root/tester/covoar/TraceWriterBase.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 17:02:26 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commitc159160424dc18b5c71e4bacae0230da3ea16ec1 (patch)
treed2b82dd0c7206532aa2049eb48d57020eb643351 /tester/covoar/TraceWriterBase.h
parentRemove objdumpProcessor global variable (diff)
downloadrtems-tools-c159160424dc18b5c71e4bacae0230da3ea16ec1.tar.bz2
Remove Verbose global variable
Replaced Verbose in app_common with local variables that are passed as a parameter into numerous functions
Diffstat (limited to 'tester/covoar/TraceWriterBase.h')
-rw-r--r--tester/covoar/TraceWriterBase.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tester/covoar/TraceWriterBase.h b/tester/covoar/TraceWriterBase.h
index 41307d1..070dcca 100644
--- a/tester/covoar/TraceWriterBase.h
+++ b/tester/covoar/TraceWriterBase.h
@@ -36,12 +36,14 @@ namespace Trace {
*
* @param[in] file specifies the name of the file to write
* @param[in] log structure where the trace data was read into
+ * @param[in] verbose specifies whether to be verbose with output
*
* @return Returns TRUE if the method succeeded and FALSE if it failed.
*/
virtual bool writeFile(
const char* const file,
- Trace::TraceReaderBase *log
+ Trace::TraceReaderBase *log,
+ bool verbose
) = 0;
};