From dc01535c7e800189c4cb46cab470f4b958be94c7 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Fri, 2 Nov 2012 11:32:02 -0500 Subject: python: Rename doDrain()->drain() and make it do the right thing There is no point in exporting the old drain() method in Simulate.py. It should only be used internally by doDrain(). This patch moves the old drain() method into doDrain() and renames doDrain() to drain(). --- configs/common/Simulation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configs/common') diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index f6273a6f0..53ccf0a14 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -242,7 +242,7 @@ def repeatSwitch(testsys, repeat_switch_cpu_list, maxtick, switch_freq): return exit_cause print "draining the system" - m5.doDrain(testsys) + m5.drain(testsys) m5.switchCpus(repeat_switch_cpu_list) m5.resume(testsys) @@ -469,7 +469,7 @@ def run(options, root, testsys, cpu_class): print "Switching CPUS @ tick %s" % (m5.curTick()) print "Simulation ends instruction count:%d" % \ (testsys.switch_cpus_1[0].max_insts_any_thread) - m5.doDrain(testsys) + m5.drain(testsys) m5.switchCpus(switch_cpu_list1) m5.resume(testsys) -- cgit v1.2.3