summaryrefslogtreecommitdiff
path: root/src/cpu/thread_state.hh
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.hh
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.hh')
-rw-r--r--src/cpu/thread_state.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/thread_state.hh b/src/cpu/thread_state.hh
index de9b2f14e..cb1449ac5 100644
--- a/src/cpu/thread_state.hh
+++ b/src/cpu/thread_state.hh
@@ -61,8 +61,8 @@ struct ThreadState {
#if FULL_SYSTEM
ThreadState(int _cpuId, int _tid);
#else
- ThreadState(int _cpuId, int _tid, MemObject *mem,
- Process *_process, short _asid);
+ ThreadState(int _cpuId, int _tid, Process *_process,
+ short _asid, MemObject *mem);
#endif
void setCpuId(int id) { cpuId = id; }