From 48a16049412ee5d99bbff650248d1d990bb38ada Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 15 Jun 2018 22:05:53 -0700 Subject: systemc: Add the nonstandard timed_out function. Change-Id: If14a5f98f03448c712827b7f92d2a36992541518 Reviewed-on: https://gem5-review.googlesource.com/11279 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/core/sc_module.cc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/systemc/core/sc_module.cc') diff --git a/src/systemc/core/sc_module.cc b/src/systemc/core/sc_module.cc index b4fd29267..0954ce9c2 100644 --- a/src/systemc/core/sc_module.cc +++ b/src/systemc/core/sc_module.cc @@ -301,6 +301,14 @@ sc_module::next_trigger(double, sc_time_unit, const sc_event_and_list &) } +bool +sc_module::timed_out() +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return false; +} + + void sc_module::wait() { @@ -483,6 +491,13 @@ next_trigger(double, sc_time_unit, const sc_event_and_list &) warn("%s not implemented.\n", __PRETTY_FUNCTION__); } +bool +timed_out() +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return false; +} + void wait() -- cgit v1.2.3