Deleted Added
sdiff udiff text old ( 12727:56c23b54bcb1 ) new ( 13351:1d456a63bfbc )
full compact
1/*
2 * Copyright (c) 2012-2013, 2015-2016 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

102 /**
103 * Moves the MSHR to the front of the pending list if it is not
104 * in service.
105 * @param mshr The entry to move.
106 */
107 void moveToFront(MSHR *mshr);
108
109 /**
110 * Mark the given MSHR as in service. This removes the MSHR from the
111 * readyList or deallocates the MSHR if it does not expect a response.
112 *
113 * @param mshr The MSHR to mark in service.
114 * @param pending_modified_resp Whether we expect a modified response
115 * from another cache
116 */
117 void markInService(MSHR *mshr, bool pending_modified_resp);

--- 35 unchanged lines hidden ---