diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2009-09-29 18:03:10 -0400 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2009-09-29 18:03:10 -0400 |
commit | 1290a5f340db08215bee9b0c02173ead53b95050 (patch) | |
tree | 1bda840e43d6e3fee7ec4d1160ec6c5b7e0cb8ba /src/cpu | |
parent | 160bcf4442df44b410c61c2d842696cb23b796f7 (diff) | |
download | gem5-1290a5f340db08215bee9b0c02173ead53b95050.tar.xz |
commit Soumyaroop's bug catch about max_insts_all_threads
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/base.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/base.cc b/src/cpu/base.cc index e4cb79344..556e7ec6f 100644 --- 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_any_thread); + comInstEventQueue[tid]->schedule(event, p->max_insts_all_threads); } } |