diff options
Diffstat (limited to 'src/arch/mips')
-rw-r--r-- | src/arch/mips/idle_event.hh | 4 | ||||
-rw-r--r-- | src/arch/mips/linux/system.hh | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/mips/idle_event.hh b/src/arch/mips/idle_event.hh index 3f96ce3e0..c65be0d0c 100644 --- a/src/arch/mips/idle_event.hh +++ b/src/arch/mips/idle_event.hh @@ -38,8 +38,8 @@ class IdleStartEvent : public PCEvent { public: - IdleStartEvent(PCEventQueue *q, const std::string &desc, Addr addr) - : PCEvent(q, desc, addr) + IdleStartEvent(PCEventScope *s, const std::string &desc, Addr addr) + : PCEvent(s, desc, addr) {} virtual void process(ThreadContext *tc); }; diff --git a/src/arch/mips/linux/system.hh b/src/arch/mips/linux/system.hh index 55e47bbb2..2b8526b63 100644 --- a/src/arch/mips/linux/system.hh +++ b/src/arch/mips/linux/system.hh @@ -54,16 +54,16 @@ class LinuxMipsSystem : public MipsSystem class SkipDelayLoopEvent : public SkipFuncEvent { public: - SkipDelayLoopEvent(PCEventQueue *q, const std::string &desc, Addr addr) - : SkipFuncEvent(q, desc, addr) {} + SkipDelayLoopEvent(PCEventScope *s, const std::string &desc, Addr addr) + : SkipFuncEvent(s, desc, addr) {} virtual void process(ThreadContext *tc); }; class PrintThreadInfo : public PCEvent { public: - PrintThreadInfo(PCEventQueue *q, const std::string &desc, Addr addr) - : PCEvent(q, desc, addr) {} + PrintThreadInfo(PCEventScope *s, const std::string &desc, Addr addr) + : PCEvent(s, desc, addr) {} virtual void process(ThreadContext *tc); }; |