summaryrefslogtreecommitdiff
path: root/src/sim/eventq.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/eventq.hh')
-rw-r--r--src/sim/eventq.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sim/eventq.hh b/src/sim/eventq.hh
index cfb79614f..92cd241a6 100644
--- a/src/sim/eventq.hh
+++ b/src/sim/eventq.hh
@@ -564,6 +564,7 @@ class EventQueue : public Serializable
Tick nextTick() const { return head->when(); }
void setCurTick(Tick newVal) { _curTick = newVal; }
Tick getCurTick() { return _curTick; }
+ Event *getHead() const { return head; }
Event *serviceOne();