summaryrefslogtreecommitdiff
path: root/src/systemc/ext/core/sc_module.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/ext/core/sc_module.hh')
-rw-r--r--src/systemc/ext/core/sc_module.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/systemc/ext/core/sc_module.hh b/src/systemc/ext/core/sc_module.hh
index ffb1a3ccb..78919613e 100644
--- a/src/systemc/ext/core/sc_module.hh
+++ b/src/systemc/ext/core/sc_module.hh
@@ -183,6 +183,9 @@ class sc_module : public sc_object
void next_trigger(const sc_time &, const sc_event_and_list &);
void next_trigger(double, sc_time_unit, const sc_event_and_list &);
+ // Nonstandard
+ bool timed_out();
+
void wait();
void wait(int);
void wait(const sc_event &);
@@ -242,6 +245,9 @@ void wait(double, sc_time_unit, const sc_event_or_list &);
void wait(const sc_time &, const sc_event_and_list &);
void wait(double, sc_time_unit, const sc_event_and_list &);
+// Nonstandard
+bool timed_out();
+
#define SC_MODULE(name) struct name : ::sc_core::sc_module
#define SC_CTOR(name) \