systemc: Add the nonstandard sc_user exception type.

This type is not in the spec but is used in the tests.

Change-Id: I4537a33b0b5dcb3c72a091276d601c244c4a3862
Reviewed-on: https://gem5-review.googlesource.com/11284
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
This commit is contained in:
Gabe Black
2018-06-15 23:19:23 -07:00
parent 6d9b0de3b5
commit 9dacb892a5

View File

@@ -37,6 +37,14 @@ namespace sc_core
typedef std::exception sc_exception;
// Nonstandard
class sc_user
{
public:
sc_user() {}
sc_user(const sc_user &) {}
};
} // namespace sc_core
#endif //__SYSTEMC_EXT_UTIL_SC_EXCEPTION_HH__