qport.hh (10912:b99a6662d7c2) qport.hh (11194:c3ba89c653a9)
1/*
2 * Copyright (c) 2012,2015 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

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

83 virtual ~QueuedSlavePort() { }
84
85 /**
86 * Schedule the sending of a timing response.
87 *
88 * @param pkt Packet to send
89 * @param when Absolute time (in ticks) to send packet
90 */
1/*
2 * Copyright (c) 2012,2015 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

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

83 virtual ~QueuedSlavePort() { }
84
85 /**
86 * Schedule the sending of a timing response.
87 *
88 * @param pkt Packet to send
89 * @param when Absolute time (in ticks) to send packet
90 */
91 void schedTimingResp(PacketPtr pkt, Tick when)
92 { respQueue.schedSendTiming(pkt, when); }
91 void schedTimingResp(PacketPtr pkt, Tick when, bool force_order = false)
92 { respQueue.schedSendTiming(pkt, when, force_order); }
93
94 /** Check the list of buffered packets against the supplied
95 * functional request. */
96 bool checkFunctional(PacketPtr pkt)
97 { return respQueue.checkFunctional(pkt); }
98};
99
100/**

--- 69 unchanged lines hidden ---
93
94 /** Check the list of buffered packets against the supplied
95 * functional request. */
96 bool checkFunctional(PacketPtr pkt)
97 { return respQueue.checkFunctional(pkt); }
98};
99
100/**

--- 69 unchanged lines hidden ---