summaryrefslogtreecommitdiff
path: root/src/cpu/thread_state.cc
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-06-22 18:10:17 -0400
committerKevin Lim <ktlim@umich.edu>2006-06-22 18:10:17 -0400
commite6c04b1584998ed2ea532da4070b356c75906f63 (patch)
tree940545a432e9697fd8b630e04757ec18f385ece3 /src/cpu/thread_state.cc
parent6e95bcd333784e1292293980cb2c2fba9f2ac467 (diff)
downloadgem5-e6c04b1584998ed2ea532da4070b356c75906f63.tar.xz
Change ThreadState constructor ordering to match the rest of the ThreadStates.
--HG-- extra : convert_revision : 63d98aa8b6a694c285d95a2a57e1b3aaef4cee3b
Diffstat (limited to 'src/cpu/thread_state.cc')
-rw-r--r--src/cpu/thread_state.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/thread_state.cc b/src/cpu/thread_state.cc
index dcfa93c3e..872678a41 100644
--- a/src/cpu/thread_state.cc
+++ b/src/cpu/thread_state.cc
@@ -38,8 +38,8 @@ ThreadState::ThreadState(int _cpuId, int _tid)
profile(NULL), profileNode(NULL), profilePC(0), quiesceEvent(NULL),
funcExeInst(0), storeCondFailures(0)
#else
-ThreadState::ThreadState(int _cpuId, int _tid, MemObject *mem,
- Process *_process, short _asid)
+ThreadState::ThreadState(int _cpuId, int _tid, Process *_process,
+ short _asid, MemObject *mem)
: cpuId(_cpuId), tid(_tid), lastActivate(0), lastSuspend(0),
process(_process), asid(_asid),
funcExeInst(0), storeCondFailures(0)