Deleted Added
sdiff udiff text old ( 10698:829adc48e175 ) new ( 10905:a6ca6831e775 )
full compact
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

--- 166 unchanged lines hidden (view full) ---

175 }
176
177 void regStats(const std::string &name)
178 {
179 actualTC->regStats(name);
180 checkerTC->regStats(name);
181 }
182
183 void serialize(std::ostream &os) { actualTC->serialize(os); }
184 void unserialize(Checkpoint *cp, const std::string &section)
185 { actualTC->unserialize(cp, section); }
186
187 EndQuiesceEvent *getQuiesceEvent() { return actualTC->getQuiesceEvent(); }
188
189 Tick readLastActivate() { return actualTC->readLastActivate(); }
190 Tick readLastSuspend() { return actualTC->readLastSuspend(); }
191
192 void profileClear() { return actualTC->profileClear(); }
193 void profileSample() { return actualTC->profileSample(); }
194

--- 146 unchanged lines hidden ---