Deleted Added
sdiff udiff text old ( 5350:67e5e13f4146 ) new ( 5365:49bef92749d1 )
full compact
1/*
2 * Copyright (c) 2002-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;

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

265 /**
266 * Squash all requests associated with specified thread.
267 * intended for use by I-cache.
268 * @param threadNum The thread to squash.
269 */
270 void squash(int threadNum);
271
272 /**
273 * Selects a outstanding request to service.
274 * @return The request to service, NULL if none found.
275 */
276 PacketPtr getBusPacket(PacketPtr cpu_pkt, BlkType *blk,
277 bool needsExclusive);
278 MSHR *getNextMSHR();
279 PacketPtr getTimingPacket();
280
281 /**
282 * Marks a request as in service (sent on the bus). This can have side
283 * effect since storage for no response commands is deallocated once they
284 * are successfully sent.
285 * @param pkt The request that was sent on the bus.
286 */

--- 30 unchanged lines hidden ---