diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2011-02-06 22:14:18 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2011-02-06 22:14:18 -0800 |
commit | c41fc138e78420c72d8dada805a16c96f74f631b (patch) | |
tree | d66a767288ca51f19f143c891ce2b722101bca40 /src/dev/x86/intdev.hh | |
parent | 3a2d2223e1debf932a0cec3244e4ce63e5d748af (diff) | |
download | gem5-c41fc138e78420c72d8dada805a16c96f74f631b.tar.xz |
dev: fixed bugs to extend interrupt capability beyond 15 cores
Diffstat (limited to 'src/dev/x86/intdev.hh')
-rw-r--r-- | src/dev/x86/intdev.hh | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/dev/x86/intdev.hh b/src/dev/x86/intdev.hh index 61e486718..b26b081bf 100644 --- a/src/dev/x86/intdev.hh +++ b/src/dev/x86/intdev.hh @@ -84,14 +84,6 @@ class IntDev // need to be moved into a subclass. void sendMessage(ApicList apics, TriggerIntMessage message, bool timing); - - void recvStatusChange(Status status) - { - if (status == RangeChange) { - sendStatusChange(Port::RangeChange); - } - } - }; IntPort * intPort; @@ -110,6 +102,8 @@ class IntDev virtual ~IntDev() {} + virtual void init(); + virtual void signalInterrupt(int line) { |