Deleted Added
sdiff udiff text old ( 3349:fec4a86fa212 ) new ( 3662:9dacf0926b69 )
full compact
1
2/*
3 * Copyright (c) 2006 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

86}
87
88
89/** Function called by the port when the bus is receiving a Timing
90 * transaction.*/
91bool
92Bridge::BridgePort::recvTiming(PacketPtr pkt)
93{
94 DPRINTF(BusBridge, "recvTiming: src %d dest %d addr 0x%x\n",
95 pkt->getSrc(), pkt->getDest(), pkt->getAddr());
96
97 return otherPort->queueForSendTiming(pkt);
98}
99
100
101bool
102Bridge::BridgePort::queueForSendTiming(PacketPtr pkt)
103{
104 if (queueFull())
105 return false;

--- 158 unchanged lines hidden ---