bridge.hh (10713:eddb533708cb) bridge.hh (11192:4c28abcf8249)
1/*
2 * Copyright (c) 2011-2013 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

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

131
132 /** If we should send a retry when space becomes available. */
133 bool retryReq;
134
135 /** Max queue size for reserved responses. */
136 unsigned int respQueueLimit;
137
138 /**
1/*
2 * Copyright (c) 2011-2013 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

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

131
132 /** If we should send a retry when space becomes available. */
133 bool retryReq;
134
135 /** Max queue size for reserved responses. */
136 unsigned int respQueueLimit;
137
138 /**
139 * Upstream caches need this packet until true is returned, so
140 * hold it for deletion until a subsequent call
141 */
142 std::unique_ptr<Packet> pendingDelete;
143
144 /**
139 * Is this side blocked from accepting new response packets.
140 *
141 * @return true if the reserved space has reached the set limit
142 */
143 bool respQueueFull() const;
144
145 /**
146 * Handle send event, scheduled when the packet at the head of

--- 181 unchanged lines hidden ---
145 * Is this side blocked from accepting new response packets.
146 *
147 * @return true if the reserved space has reached the set limit
148 */
149 bool respQueueFull() const;
150
151 /**
152 * Handle send event, scheduled when the packet at the head of

--- 181 unchanged lines hidden ---