diff options
Diffstat (limited to 'src/systemc/core')
-rw-r--r-- | src/systemc/core/sc_process_handle.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/systemc/core/sc_process_handle.cc b/src/systemc/core/sc_process_handle.cc index e0f6a8186..256d64989 100644 --- a/src/systemc/core/sc_process_handle.cc +++ b/src/systemc/core/sc_process_handle.cc @@ -39,17 +39,19 @@ namespace sc_core const char * sc_unwind_exception::what() const throw() { - panic("%s for base class called.\n", __PRETTY_FUNCTION__); + return _isReset ? "RESET" : "KILL"; } bool sc_unwind_exception::is_reset() const { - panic("%s for base class called.\n", __PRETTY_FUNCTION__); + return _isReset; } -sc_unwind_exception::sc_unwind_exception() {} -sc_unwind_exception::sc_unwind_exception(const sc_unwind_exception &) {} +sc_unwind_exception::sc_unwind_exception() : _isReset(false) {} +sc_unwind_exception::sc_unwind_exception(const sc_unwind_exception &e) : + _isReset(e._isReset) +{} sc_unwind_exception::~sc_unwind_exception() throw() {} |