mshr_queue.hh (5338:e75d02a09806) mshr_queue.hh (7667:aa8fd8f6a495)
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;

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

155 */
156 void moveToFront(MSHR *mshr);
157
158 /**
159 * Mark the given MSHR as in service. This removes the MSHR from the
160 * readyList. Deallocates the MSHR if it does not expect a response.
161 * @param mshr The MSHR to mark in service.
162 */
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;

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

155 */
156 void moveToFront(MSHR *mshr);
157
158 /**
159 * Mark the given MSHR as in service. This removes the MSHR from the
160 * readyList. Deallocates the MSHR if it does not expect a response.
161 * @param mshr The MSHR to mark in service.
162 */
163 void markInService(MSHR *mshr);
163 void markInService(MSHR *mshr, PacketPtr pkt);
164
165 /**
166 * Mark an in service entry as pending, used to resend a request.
167 * @param mshr The MSHR to resend.
168 */
169 void markPending(MSHR *mshr);
170
171 /**

--- 43 unchanged lines hidden ---
164
165 /**
166 * Mark an in service entry as pending, used to resend a request.
167 * @param mshr The MSHR to resend.
168 */
169 void markPending(MSHR *mshr);
170
171 /**

--- 43 unchanged lines hidden ---