summaryrefslogtreecommitdiff
path: root/src/cpu/base.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/base.hh')
-rw-r--r--src/cpu/base.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/base.hh b/src/cpu/base.hh
index 2a57c01ba..95ae4fc43 100644
--- a/src/cpu/base.hh
+++ b/src/cpu/base.hh
@@ -220,14 +220,14 @@ class BaseCPU : public MemObject
return interrupts[tid];
}
- virtual void wakeup() = 0;
+ virtual void wakeup(ThreadID tid) = 0;
void
postInterrupt(ThreadID tid, int int_num, int index)
{
interrupts[tid]->post(int_num, index);
if (FullSystem)
- wakeup();
+ wakeup(tid);
}
void