diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-07 05:38:33 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-07 05:38:33 -0500 |
commit | da24915181516740e94efc7de4d9e9263c663e0d (patch) | |
tree | d2d045da1b921e6e902ea7afefd1907fd803ec6e /src/arch/alpha | |
parent | 4bfb8547bbdee3bd0ec23ae067ff04fd5e07f4be (diff) | |
download | gem5-da24915181516740e94efc7de4d9e9263c663e0d.tar.xz |
Moved the idle event out of system_events.hh. The skipFuncEvent can be made ISA independent by making it use the #define for branch delay slots (and NNPC)
--HG--
extra : convert_revision : b2631b1163397ecc99f2f315e2b88537e2002731
Diffstat (limited to 'src/arch/alpha')
-rw-r--r-- | src/arch/alpha/linux/system.cc | 1 | ||||
-rw-r--r-- | src/arch/alpha/linux/system.hh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/alpha/linux/system.cc b/src/arch/alpha/linux/system.cc index 7cf234eeb..00684edbb 100644 --- a/src/arch/alpha/linux/system.cc +++ b/src/arch/alpha/linux/system.cc @@ -49,6 +49,7 @@ #include "cpu/thread_context.hh" #include "cpu/base.hh" #include "dev/platform.hh" +#include "kern/alpha/idle_event.hh" #include "kern/linux/printk.hh" #include "kern/linux/events.hh" #include "mem/physical.hh" diff --git a/src/arch/alpha/linux/system.hh b/src/arch/alpha/linux/system.hh index 6921ba820..d4c92ac01 100644 --- a/src/arch/alpha/linux/system.hh +++ b/src/arch/alpha/linux/system.hh @@ -39,6 +39,7 @@ class BreakPCEvent; class IdleStartEvent; #include "arch/alpha/system.hh" +#include "kern/alpha/idle_event.hh" #include "kern/linux/events.hh" using namespace AlphaISA; |