Deleted Added
sdiff udiff text old ( 3776:4f88e76d8ebe ) new ( 3791:f1783bae1afe )
full compact
1/*
2 * Copyright (c) 2001-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

229 void suspend();
230
231 /// Set the status to Unallocated.
232 void deallocate();
233
234 /// Set the status to Halted.
235 void halt();
236
237 virtual bool misspeculating();
238
239 Fault instRead(RequestPtr &req)
240 {
241 panic("instRead not implemented");
242 // return funcPhysMem->read(req, inst);
243 return NoFault;
244 }

--- 174 unchanged lines hidden ---