Deleted Added
sdiff udiff text old ( 11004:2c347b12cc9c ) new ( 11005:e7f403b6b76f )
full compact
1/*
2 * Copyright (c) 2003-2005 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;

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

176const Addr MaxAddr = (Addr)-1;
177
178/**
179 * Thread index/ID type
180 */
181typedef int16_t ThreadID;
182const ThreadID InvalidThreadID = (ThreadID)-1;
183
184/**
185 * Port index/ID type, and a symbolic name for an invalid port id.
186 */
187typedef int16_t PortID;
188const PortID InvalidPortID = (PortID)-1;
189
190class FaultBase;
191typedef std::shared_ptr<FaultBase> Fault;

--- 13 unchanged lines hidden ---