summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2007-10-25 22:20:00 -0400
committerAli Saidi <saidi@eecs.umich.edu>2007-10-25 22:20:00 -0400
commit51345d7324d389f1e5e9fa17e4465f5ff92916fa (patch)
treefb50fd3b6daad060e77014ea605dee378ada5c61 /configs
parentfddfa71658a35f91c249ce0b7b67984d979a4fb4 (diff)
downloadgem5-51345d7324d389f1e5e9fa17e4465f5ff92916fa.tar.xz
Checkpoints: Change Simulation.py to not go crazy if the simulation ends before the number of checkpoints requested are created.
--HG-- extra : convert_revision : 865179134a219b34dbbba698e1fa0da7c452e074
Diffstat (limited to 'configs')
-rw-r--r--configs/common/Simulation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py
index c65597367..6b585d8c3 100644
--- a/configs/common/Simulation.py
+++ b/configs/common/Simulation.py
@@ -192,7 +192,7 @@ def run(options, root, testsys, cpu_class):
sim_ticks = when
exit_cause = "maximum %d checkpoints dropped" % max_checkpoints
while num_checkpoints < max_checkpoints and \
- exit_event.getCause() != "user interrupt received":
+ exit_event.getCause() == "simulate() limit reached":
if (sim_ticks + period) > maxtick:
exit_event = m5.simulate(maxtick - sim_ticks)
exit_cause = exit_event.getCause()
@@ -206,7 +206,7 @@ def run(options, root, testsys, cpu_class):
m5.checkpoint(root, joinpath(cptdir, "cpt.%d"))
num_checkpoints += 1
- if exit_event.getCause() == "user interrupt received":
+ if exit_event.getCause() != "simulate() limit reached":
exit_cause = exit_event.getCause();