From 930386c114eda9e0f57d407d2ef61740fd75fc88 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 5 Sep 2018 16:08:24 -0700 Subject: systemc: Implement the nonstandard halt function. Change-Id: Ie9bd9db92a63169980230bc9a15e153d5609dd0b Reviewed-on: https://gem5-review.googlesource.com/c/12594 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/core/sc_module.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (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 8418a3136..2ba0fa221 100644 --- a/src/systemc/core/sc_module.cc +++ b/src/systemc/core/sc_module.cc @@ -670,7 +670,8 @@ wait(double d, sc_time_unit u, const sc_event_and_list &eal) void halt() { - warn("%s not implemented.\n", __PRETTY_FUNCTION__); + ::sc_core::wait(); + throw ::sc_gem5::ScHalt(); } void -- cgit v1.2.3