Deleted Added
sdiff udiff text old ( 8975:7f36d4436074 ) new ( 9063:965c042379df )
full compact
1/*
2 * Copyright (c) 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

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

68 /** Implemented using recvAtomic(). */
69 void recvFunctional(PacketPtr pkt);
70
71 /** Implemented using recvAtomic(). */
72 bool recvTimingReq(PacketPtr pkt);
73
74 virtual Tick recvAtomic(PacketPtr pkt) = 0;
75
76 public:
77
78 /**
79 * Create a new SimpleTimingPort that relies on a packet queue to
80 * hold responses, and implements recvTimingReq and recvFunctional
81 * through calls to recvAtomic. Once a request arrives, it is
82 * passed to recvAtomic, and in the case of a timing access any
83 * response is scheduled to be sent after the delay of the atomic

--- 12 unchanged lines hidden ---