Deleted Added
sdiff udiff text old ( 9342:6fec8f26e56d ) new ( 9346:7a9b5e0335a6 )
full compact
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

197 /**
198 * Resume execution after a successful drain.
199 *
200 * @note This method is normally only called from the simulation
201 * scripts.
202 */
203 virtual void drainResume();
204
205 State getDrainState() const { return _drainState; }
206
207 protected:
208 void setDrainState(State new_state) { _drainState = new_state; }
209
210
211 private:
212 State _drainState;
213
214};
215
216#endif