diff --git a/src/sim/eventq.hh b/src/sim/eventq.hh index 92c38142c0..a47c24c4d2 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