Deleted Added
sdiff udiff text old ( 14022:a7cdc33dab35 ) new ( 14024:abe47b13653d )
full compact
1/*
2 * Copyright (c) 2011-2012, 2016-2018 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

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

218 PortProxy &getPhysProxy() override { return ThreadState::getPhysProxy(); }
219 PortProxy &getVirtProxy() override { return ThreadState::getVirtProxy(); }
220
221 void initMemProxies(ThreadContext *tc) override
222 {
223 ThreadState::initMemProxies(tc);
224 }
225
226 Process *getProcessPtr() override { return ThreadState::getProcessPtr(); }
227 void setProcessPtr(Process *p) override { ThreadState::setProcessPtr(p); }
228
229 Status status() const override { return _status; }
230
231 void setStatus(Status newStatus) override { _status = newStatus; }
232
233 /// Set the status to Active.

--- 469 unchanged lines hidden ---