This function enables or disables tracing of delta cycles in a
particular trace file.
Change-Id: I53164a792856d071de1fefc76977cca8eb5fd735
Reviewed-on: https://gem5-review.googlesource.com/11267
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
using sc_core::sc_close_vcd_trace_file;
using sc_core::sc_write_comment;
using sc_core::sc_trace;
+using sc_core::sc_trace_delta_cycles;
using sc_core::sc_exception;
void sc_trace(sc_trace_file *, const unsigned int &,
const std::string &, const char **enum_literals);
+// Deprecated
+void sc_trace_delta_cycles(sc_trace_file *, bool on=true);
+
template <class T>
void
sc_trace(sc_trace_file *, const sc_signal_in_if<T> &, const std::string &)
warn("%s not implemented.\n", __PRETTY_FUNCTION__);
}
+void
+sc_trace_delta_cycles(sc_trace_file *, bool on)
+{
+ warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
} // namespace sc_core