diff options
-rw-r--r-- | src/sim/eventq.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sim/eventq.hh b/src/sim/eventq.hh index 92c38142c..a47c24c4d 100644 --- a/src/sim/eventq.hh +++ b/src/sim/eventq.hh @@ -466,6 +466,14 @@ class EventWrapper : public Event } void process() { (object->*F)(); } + + const std::string + name() const + { + return object->name() + ".wrapped_event"; + } + + const char *description() const { return "EventWrapped"; } }; inline void |