From: Gabe Black Date: Tue, 9 Oct 2018 23:22:47 +0000 (-0700) Subject: systemc: Don't include the scheduler in an external header file. X-Git-Tag: v19.0.0.0~1489 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f9596e536bbe2f1f19ad16cd7a1bfe2ff0ccd525;p=gem5.git systemc: Don't include the scheduler in an external header file. The scheduler is an internal detail and shouldn't be exposed to the headers in ext. It would transitively include more headers which are not in ext, making it not self contained. Change-Id: I8384cde9d19363953ffd0c91e7d8d27f8f79a570 Reviewed-on: https://gem5-review.googlesource.com/c/13336 Reviewed-by: Gabe Black Maintainer: Gabe Black --- diff --git a/src/systemc/ext/channel/sc_signal_rv.hh b/src/systemc/ext/channel/sc_signal_rv.hh index 1a47e84ad..c769f377a 100644 --- a/src/systemc/ext/channel/sc_signal_rv.hh +++ b/src/systemc/ext/channel/sc_signal_rv.hh @@ -31,11 +31,18 @@ #define __SYSTEMC_EXT_CHANNEL_SC_SIGNAL_RV_HH__ #include "../core/sc_module.hh" // for sc_gen_unique_name -#include "../core/scheduler.hh" #include "../dt/bit/sc_logic.hh" #include "../dt/bit/sc_lv.hh" #include "sc_signal.hh" +namespace sc_gem5 +{ + +class Process; +Process *getCurrentProcess(); + +} // namespace sc_gem5 + namespace sc_dt { @@ -66,7 +73,7 @@ class sc_signal_rv : public sc_signal, SC_MANY_WRITERS> virtual void write(const sc_dt::sc_lv &l) { - ::sc_gem5::Process *p = ::sc_gem5::scheduler.current(); + ::sc_gem5::Process *p = ::sc_gem5::getCurrentProcess(); auto it = inputs.find(p); if (it == inputs.end()) {