diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:19 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:19 -0800 |
commit | 4e5f4b5074a5f76c73e9ca94954b43cd1686866c (patch) | |
tree | ec74d20e995b55851774d3c37375a87f8dbd9e78 /src/mem/ruby/eventqueue | |
parent | e15abd17f92db574dfcbf3798f6352712f897ebc (diff) | |
download | gem5-4e5f4b5074a5f76c73e9ca94954b43cd1686866c.tar.xz |
ruby: Converted the sequencer deadlock event to m5 eventq
Diffstat (limited to 'src/mem/ruby/eventqueue')
-rw-r--r-- | src/mem/ruby/eventqueue/RubyEventQueue.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/ruby/eventqueue/RubyEventQueue.hh b/src/mem/ruby/eventqueue/RubyEventQueue.hh index 36aa4843e..f9b4aa060 100644 --- a/src/mem/ruby/eventqueue/RubyEventQueue.hh +++ b/src/mem/ruby/eventqueue/RubyEventQueue.hh @@ -79,6 +79,7 @@ public: // Public Methods Time getTime() const { return curTick/m_clock; } + Tick getClock() const { return m_clock; } void scheduleEvent(Consumer* consumer, Time timeDelta); void scheduleEventAbsolute(Consumer* consumer, Time timeAbs); void print(ostream& out) const; |