base.hh (8922:17f037ad8918) base.hh (8948:e95ee70f876c)
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

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

137 /**
138 * Schedule the transmissions of a response packet at a given
139 * point in time.
140 *
141 * @param pkt response packet
142 * @param when time to send the response
143 */
144 void respond(PacketPtr pkt, Tick time) {
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

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

137 /**
138 * Schedule the transmissions of a response packet at a given
139 * point in time.
140 *
141 * @param pkt response packet
142 * @param when time to send the response
143 */
144 void respond(PacketPtr pkt, Tick time) {
145 queue.schedSendTiming(pkt, time);
145 queue.schedSendTiming(pkt, time, true);
146 }
147
148 protected:
149
150 CacheMasterPort(const std::string &_name, BaseCache *_cache,
151 PacketQueue &_queue) :
152 QueuedMasterPort(_name, _cache, _queue)
153 { }

--- 430 unchanged lines hidden ---
146 }
147
148 protected:
149
150 CacheMasterPort(const std::string &_name, BaseCache *_cache,
151 PacketQueue &_queue) :
152 QueuedMasterPort(_name, _cache, _queue)
153 { }

--- 430 unchanged lines hidden ---