cache.hh (3135:8e008e281579) cache.hh (3194:a304c81d654d)
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;

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

170 */
171 virtual Packet * getPacket();
172
173 /**
174 * Was the request was sent successfully?
175 * @param pkt The request.
176 * @param success True if the request was sent successfully.
177 */
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;

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

170 */
171 virtual Packet * getPacket();
172
173 /**
174 * Was the request was sent successfully?
175 * @param pkt The request.
176 * @param success True if the request was sent successfully.
177 */
178 virtual void sendResult(Packet * &pkt, bool success);
178 virtual void sendResult(Packet * &pkt, MSHR* mshr, bool success);
179
180 /**
181 * Handles a response (cache line fill/write ack) from the bus.
182 * @param pkt The request being responded to.
183 */
184 void handleResponse(Packet * &pkt);
185
186 /**

--- 82 unchanged lines hidden ---
179
180 /**
181 * Handles a response (cache line fill/write ack) from the bus.
182 * @param pkt The request being responded to.
183 */
184 void handleResponse(Packet * &pkt);
185
186 /**

--- 82 unchanged lines hidden ---