changeset 81e6aa93bc6a in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=81e6aa93bc6a
description:
        commit Soumyaroop's bug catch about max_insts_all_threads

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/cpu/base.cc |    2 +-

diffs (12 lines):

diff -r 2a69e47a335c -r 81e6aa93bc6a src/cpu/base.cc
--- a/src/cpu/base.cc   Sat Sep 26 12:51:37 2009 -0700
+++ b/src/cpu/base.cc   Tue Sep 29 18:03:10 2009 -0400
@@ -151,7 +151,7 @@
         *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);
         }
     }
 
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to