summaryrefslogtreecommitdiff
path: root/src/arch/x86/interrupts.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/interrupts.hh')
-rw-r--r--src/arch/x86/interrupts.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/arch/x86/interrupts.hh b/src/arch/x86/interrupts.hh
index 8c7316217..c5e3bde0d 100644
--- a/src/arch/x86/interrupts.hh
+++ b/src/arch/x86/interrupts.hh
@@ -69,6 +69,7 @@
#include "sim/eventq.hh"
class ThreadContext;
+class BaseCPU;
namespace X86ISA {
@@ -182,6 +183,8 @@ class Interrupts : public BasicPioDevice, IntDev
void requestInterrupt(uint8_t vector, uint8_t deliveryMode, bool level);
+ BaseCPU *cpu;
+
public:
/*
* Params stuff.
@@ -189,6 +192,12 @@ class Interrupts : public BasicPioDevice, IntDev
typedef X86LocalApicParams Params;
void
+ setCPU(BaseCPU * newCPU)
+ {
+ cpu = newCPU;
+ }
+
+ void
setClock(Tick newClock)
{
clock = newClock;