packet_queue.hh (12083:d6a612791733) packet_queue.hh (12823:ba630bc7a36d)
1/*
2 * Copyright (c) 2012,2015 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

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

164
165 /**
166 * Check if a packets address exists in the queue.
167 */
168 bool hasAddr(Addr addr) const;
169
170 /** Check the list of buffered packets against the supplied
171 * functional request. */
1/*
2 * Copyright (c) 2012,2015 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

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

164
165 /**
166 * Check if a packets address exists in the queue.
167 */
168 bool hasAddr(Addr addr) const;
169
170 /** Check the list of buffered packets against the supplied
171 * functional request. */
172 bool checkFunctional(PacketPtr pkt);
172 bool trySatisfyFunctional(PacketPtr pkt);
173
174 /**
175 * Schedule a send event if we are not already waiting for a
176 * retry. If the requested time is before an already scheduled
177 * send event, the event will be rescheduled. If MaxTick is
178 * passed, no event is scheduled. Instead, if we are idle and
179 * asked to drain then check and signal drained.
180 *

--- 140 unchanged lines hidden ---
173
174 /**
175 * Schedule a send event if we are not already waiting for a
176 * retry. If the requested time is before an already scheduled
177 * send event, the event will be rescheduled. If MaxTick is
178 * passed, no event is scheduled. Instead, if we are idle and
179 * asked to drain then check and signal drained.
180 *

--- 140 unchanged lines hidden ---