diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-14 01:23:59 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-14 01:23:59 -0500 |
commit | 8d234a4bc5adb6dcf26d73596c45a29e616bb4c2 (patch) | |
tree | a5e4354cbe61d806cd656f314c48efccaf8f32e2 /src/cpu/o3/alpha/cpu.hh | |
parent | 14cb2264c80eb961eab1f80738e0144b6179d1a3 (diff) | |
parent | 69623a892edbaddc8d68a98766ef09b421ac4ce6 (diff) | |
download | gem5-8d234a4bc5adb6dcf26d73596c45a29e616bb4c2.tar.xz |
Merge 141.212.106.238:/home/gblack/m5/newmemmemops
into zizzer.eecs.umich.edu:/.automount/wexford/x/gblack/m5/newmem
--HG--
extra : convert_revision : 753831a9f6f79d07e6ee122ab894e24161d2e722
Diffstat (limited to 'src/cpu/o3/alpha/cpu.hh')
-rw-r--r-- | src/cpu/o3/alpha/cpu.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cpu/o3/alpha/cpu.hh b/src/cpu/o3/alpha/cpu.hh index b62550062..0078db69f 100644 --- a/src/cpu/o3/alpha/cpu.hh +++ b/src/cpu/o3/alpha/cpu.hh @@ -156,8 +156,11 @@ class AlphaO3CPU : public FullO3CPU<Impl> bool simPalCheck(int palFunc, unsigned tid); - /** Processes any interrupts. */ - void processInterrupts(); + /** Returns the Fault for any valid interrupt. */ + Fault getInterrupts(); + + /** Processes any an interrupt fault. */ + void processInterrupts(Fault interrupt); /** Halts the CPU. */ void halt() { panic("Halt not implemented!\n"); } |