diff options
-rw-r--r-- | src/systemc/core/process.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/systemc/core/process.cc b/src/systemc/core/process.cc index 93542fc00..7d21960bd 100644 --- a/src/systemc/core/process.cc +++ b/src/systemc/core/process.cc @@ -206,8 +206,12 @@ Process::throw_it(ExceptionWrapperBase &exc, bool inc_kids) if (inc_kids) forEachKid([&exc](Process *p) { p->throw_it(exc, true); }); - if (_needsStart || _terminated) + if (_needsStart || _terminated || + procKind() == ::sc_core::SC_METHOD_PROC_) { + SC_REPORT_WARNING("(W556) throw_it on method/non-running process " + "is being ignored ", name()); return; + } injectException(exc); } |