Deleted Added
sdiff udiff text old ( 13564:9bbd53a77887 ) new ( 13860:8f8df5b68439 )
full compact
1/*
2 * Copyright (c) 2012,2015,2018 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

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

167
168 /**
169 * Get the next packet ready time.
170 */
171 Tick deferredPacketReadyTime() const
172 { return transmitList.empty() ? MaxTick : transmitList.front().tick; }
173
174 /**
175 * Check if a packets address exists in the queue.
176 */
177 bool hasAddr(Addr addr) const;
178
179 /** Check the list of buffered packets against the supplied
180 * functional request. */
181 bool trySatisfyFunctional(PacketPtr pkt);
182
183 /**
184 * Schedule a send event if we are not already waiting for a
185 * retry. If the requested time is before an already scheduled

--- 147 unchanged lines hidden ---