From 550003e1b7a49798ff8154eae2355f298f35d346 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sun, 5 Jun 2005 02:59:43 -0400 Subject: Change SamplingCPU to Sampler. --HG-- extra : convert_revision : ddba327a572804954adcebfff1182b97d474c020 --- cpu/simple/cpu.cc | 2 +- cpu/simple/cpu.hh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cpu/simple') diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc index 306398ac2..8e26342d5 100644 --- a/cpu/simple/cpu.cc +++ b/cpu/simple/cpu.cc @@ -148,7 +148,7 @@ SimpleCPU::~SimpleCPU() } void -SimpleCPU::switchOut(SamplingCPU *s) +SimpleCPU::switchOut(Sampler *s) { sampler = s; if (status() == DcacheMissStall) { diff --git a/cpu/simple/cpu.hh b/cpu/simple/cpu.hh index 9a0c2952a..1d2ca79cb 100644 --- a/cpu/simple/cpu.hh +++ b/cpu/simple/cpu.hh @@ -145,7 +145,7 @@ class SimpleCPU : public BaseCPU // execution context ExecContext *xc; - void switchOut(SamplingCPU *s); + void switchOut(Sampler *s); void takeOverFrom(BaseCPU *oldCPU); #ifdef FULL_SYSTEM @@ -169,7 +169,7 @@ class SimpleCPU : public BaseCPU // Pointer to the sampler that is telling us to switchover. // Used to signal the completion of the pipe drain and schedule // the next switchover - SamplingCPU *sampler; + Sampler *sampler; StaticInstPtr curStaticInst; -- cgit v1.2.3