Deleted Added
sdiff udiff text old ( 12766:1c347e60c7fd ) new ( 13385:5295c5bf5fa6 )
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;

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

160static inline bool
161isRomMicroPC(MicroPC upc)
162{
163 return MicroPCRomBit & upc;
164}
165
166const Addr MaxAddr = (Addr)-1;
167
168/**
169 * Thread index/ID type
170 */
171typedef int16_t ThreadID;
172const ThreadID InvalidThreadID = (ThreadID)-1;
173
174/** Globally unique thread context ID */
175typedef int ContextID;

--- 36 unchanged lines hidden ---