projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
160bcf4
)
commit Soumyaroop's bug catch about max_insts_all_threads
author
Lisa Hsu
<hsul@eecs.umich.edu>
Tue, 29 Sep 2009 22:03:10 +0000
(18:03 -0400)
committer
Lisa Hsu
<hsul@eecs.umich.edu>
Tue, 29 Sep 2009 22:03:10 +0000
(18:03 -0400)
src/cpu/base.cc
patch
|
blob
|
history
diff --git
a/src/cpu/base.cc
b/src/cpu/base.cc
index e4cb793447f3288405926d26b2df01eb9b2b6391..556e7ec6f66c2497e100deaf644aa40c005b32c8 100644
(file)
--- a/
src/cpu/base.cc
+++ b/
src/cpu/base.cc
@@
-151,7
+151,7
@@
BaseCPU::BaseCPU(Params *p)
*counter = numThreads;
for (ThreadID tid = 0; tid < numThreads; ++tid) {
Event *event = new CountedExitEvent(cause, *counter);
- comInstEventQueue[tid]->schedule(event, p->max_insts_a
ny_thread
);
+ comInstEventQueue[tid]->schedule(event, p->max_insts_a
ll_threads
);
}
}