From: Andreas Hansson Date: Tue, 11 Sep 2012 18:14:51 +0000 (-0400) Subject: Checkpoint: Pass maxtick to avoid undefined variable X-Git-Tag: stable_2013_06_16~427 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ad7e23e9e277b13fd7cbe3b123b2d72f8817269;p=gem5.git Checkpoint: Pass maxtick to avoid undefined variable This patch fixes a bug in scriptCheckpoints, where maxtick was used undefined. The bug caused checkpointing by means of --take-checkpoints to fail. --- diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index 568b78322..8e62bcbb6 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -153,7 +153,7 @@ def findCptDir(options, maxtick, cptdir, testsys): return maxtick, checkpoint_dir -def scriptCheckpoints(options, cptdir): +def scriptCheckpoints(options, maxtick, cptdir): if options.at_instruction or options.simpoint: checkpoint_inst = int(options.take_checkpoints) @@ -488,7 +488,7 @@ def run(options, root, testsys, cpu_class): # subsequent periods of . Checkpoint instructions # received from the benchmark running are ignored and skipped in # favor of command line checkpoint instructions. - exit_cause = scriptCheckpoints(options, cptdir) + exit_cause = scriptCheckpoints(options, maxtick, cptdir) else: if options.fast_forward: m5.stats.reset()