From 1290a5f340db08215bee9b0c02173ead53b95050 Mon Sep 17 00:00:00 2001 From: Lisa Hsu Date: Tue, 29 Sep 2009 18:03:10 -0400 Subject: [PATCH] commit Soumyaroop's bug catch about max_insts_all_threads --- src/cpu/base.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }