summaryrefslogtreecommitdiff
path: root/src/cpu/simple_thread.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-10-31 02:08:44 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-10-31 02:08:44 -0500
commit4862879a9420c52d48532d957b616c458b643a1e (patch)
tree576a3c724920ede579d5f9fe7ec52e41911a306a /src/cpu/simple_thread.cc
parent79d4bede429bb5c3413fcd0cfe6f2d1790c8312d (diff)
downloadgem5-4862879a9420c52d48532d957b616c458b643a1e.tar.xz
Put the Alpha tlb stuff into the AlphaISA namespace, and give the classes more neutral names.
--HG-- extra : convert_revision : 702c715b7516a16602172deb1b78d6a7ab848fd4
Diffstat (limited to 'src/cpu/simple_thread.cc')
-rw-r--r--src/cpu/simple_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/simple_thread.cc b/src/cpu/simple_thread.cc
index 4fc47c982..95018ff8c 100644
--- a/src/cpu/simple_thread.cc
+++ b/src/cpu/simple_thread.cc
@@ -60,7 +60,7 @@ using namespace std;
// constructor
#if FULL_SYSTEM
SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys,
- AlphaITB *_itb, AlphaDTB *_dtb,
+ TheISA::ITB *_itb, TheISA::DTB *_dtb,
bool use_kernel_stats)
: ThreadState(-1, _thread_num), cpu(_cpu), system(_sys), itb(_itb),
dtb(_dtb)