Deleted Added
sdiff udiff text old ( 7720:65d338a8dba4 ) new ( 9031:32ecc0217c5e )
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;

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

92const Addr MaxAddr = (Addr)-1;
93
94/**
95 * Thread index/ID type
96 */
97typedef int16_t ThreadID;
98const ThreadID InvalidThreadID = (ThreadID)-1;
99
100class FaultBase;
101template <class T> class RefCountingPtr;
102typedef RefCountingPtr<FaultBase> Fault;
103
104#endif // __BASE_TYPES_HH__