diff options
Diffstat (limited to 'src/arch/mips/linux')
-rw-r--r-- | src/arch/mips/linux/system.hh | 8 |
1 files changed, 4 insertions, 4 deletions
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); }; |