diff options
author | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:50 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:50 -0700 |
commit | eef3a2e142443d94b75de333ff3ccb69644a9831 (patch) | |
tree | 14224dd738c732b269f8c94c95659d5b759570bf /src/kern/tru64 | |
parent | cbf237897f8de0ae411b572aea896c5ce4ea26fb (diff) | |
download | gem5-eef3a2e142443d94b75de333ff3ccb69644a9831.tar.xz |
types: Move stuff for global types into src/base/types.hh
--HG--
rename : src/sim/host.hh => src/base/types.hh
Diffstat (limited to 'src/kern/tru64')
-rw-r--r-- | src/kern/tru64/dump_mbuf.cc | 2 | ||||
-rw-r--r-- | src/kern/tru64/mbuf.hh | 2 | ||||
-rw-r--r-- | src/kern/tru64/printf.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/kern/tru64/dump_mbuf.cc b/src/kern/tru64/dump_mbuf.cc index e6bfc06d9..2cc0d15fd 100644 --- a/src/kern/tru64/dump_mbuf.cc +++ b/src/kern/tru64/dump_mbuf.cc @@ -36,7 +36,7 @@ #include "base/loader/symtab.hh" #include "cpu/thread_context.hh" #include "kern/tru64/mbuf.hh" -#include "sim/host.hh" +#include "base/types.hh" #include "sim/system.hh" #include "sim/arguments.hh" #include "arch/isa_traits.hh" diff --git a/src/kern/tru64/mbuf.hh b/src/kern/tru64/mbuf.hh index 78b5ead7a..b1b86ef47 100644 --- a/src/kern/tru64/mbuf.hh +++ b/src/kern/tru64/mbuf.hh @@ -31,7 +31,7 @@ #ifndef __MBUF_HH__ #define __MBUF_HH__ -#include "sim/host.hh" +#include "base/types.hh" #include "arch/isa_traits.hh" namespace tru64 { diff --git a/src/kern/tru64/printf.cc b/src/kern/tru64/printf.cc index 8b706c250..921b028a5 100644 --- a/src/kern/tru64/printf.cc +++ b/src/kern/tru64/printf.cc @@ -34,7 +34,7 @@ #include "arch/vtophys.hh" #include "base/cprintf.hh" #include "base/trace.hh" -#include "sim/host.hh" +#include "base/types.hh" #include "sim/arguments.hh" using namespace std; |