Deleted Added
sdiff udiff text old ( 10913:38dbdeea7f1f ) new ( 11222:c6461e8dfc0a )
full compact
1/*
2 * Copyright (c) 2012-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

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

193 numPackets++;
194 if (!port.sendTimingReq(pkt)) {
195 retryPkt = pkt;
196 retryPktTick = curTick();
197 }
198 } else {
199 DPRINTF(TrafficGen, "Suppressed packet %s 0x%x\n",
200 pkt->cmdString(), pkt->getAddr());
201 }
202 }
203
204 // if we are waiting for a retry, do not schedule any further
205 // events, in the case of a transition or a successful send, go
206 // ahead and determine when the next update should take place
207 if (retryPkt == NULL) {
208 // schedule next update event based on either the next execute

--- 322 unchanged lines hidden ---