types.hh (11004:2c347b12cc9c) types.hh (11005:e7f403b6b76f)
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
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/** Globally unique thread context ID */
185typedef int ContextID;
186const ContextID InvalidContextID = (ContextID)-1;
187
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 ---
188/**
189 * Port index/ID type, and a symbolic name for an invalid port id.
190 */
191typedef int16_t PortID;
192const PortID InvalidPortID = (PortID)-1;
193
194class FaultBase;
195typedef std::shared_ptr<FaultBase> Fault;

--- 13 unchanged lines hidden ---