bridge.hh (8922:17f037ad8918) bridge.hh (8948:e95ee70f876c)
1/*
2 * Copyright (c) 2011-2012 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

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

353
354 /** When receiving a timing request from the peer port,
355 pass it to the bridge. */
356 virtual bool recvTiming(PacketPtr pkt);
357
358 /** When receiving a retry request from the peer port,
359 pass it to the bridge. */
360 virtual void recvRetry();
1/*
2 * Copyright (c) 2011-2012 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

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

353
354 /** When receiving a timing request from the peer port,
355 pass it to the bridge. */
356 virtual bool recvTiming(PacketPtr pkt);
357
358 /** When receiving a retry request from the peer port,
359 pass it to the bridge. */
360 virtual void recvRetry();
361
362 /** When receiving a Atomic requestfrom the peer port,
363 pass it to the bridge. */
364 virtual Tick recvAtomic(PacketPtr pkt);
365
366 /** When receiving a Functional request from the peer port,
367 pass it to the bridge. */
368 virtual void recvFunctional(PacketPtr pkt);
369 };
370
371 /** Slave port of the bridge. */
372 BridgeSlavePort slavePort;
373
374 /** Master port of the bridge. */
375 BridgeMasterPort masterPort;
376

--- 22 unchanged lines hidden ---
361 };
362
363 /** Slave port of the bridge. */
364 BridgeSlavePort slavePort;
365
366 /** Master port of the bridge. */
367 BridgeMasterPort masterPort;
368

--- 22 unchanged lines hidden ---