packet_queue.cc (12083:d6a612791733) packet_queue.cc (12637:bfc3cb9c7e6c)
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

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

42 */
43
44#include "mem/packet_queue.hh"
45
46#include "base/trace.hh"
47#include "debug/Drain.hh"
48#include "debug/PacketQueue.hh"
49
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

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

42 */
43
44#include "mem/packet_queue.hh"
45
46#include "base/trace.hh"
47#include "debug/Drain.hh"
48#include "debug/PacketQueue.hh"
49
50using namespace std;
51
52PacketQueue::PacketQueue(EventManager& _em, const std::string& _label,
53 const std::string& _sendEventName,
54 bool disable_sanity_check)
55 : em(_em), sendEvent([this]{ processSendEvent(); }, _sendEventName),
56 _disableSanityCheck(disable_sanity_check),
57 label(_label), waitingOnRetry(false)
58{
59}

--- 219 unchanged lines hidden ---
50PacketQueue::PacketQueue(EventManager& _em, const std::string& _label,
51 const std::string& _sendEventName,
52 bool disable_sanity_check)
53 : em(_em), sendEvent([this]{ processSendEvent(); }, _sendEventName),
54 _disableSanityCheck(disable_sanity_check),
55 label(_label), waitingOnRetry(false)
56{
57}

--- 219 unchanged lines hidden ---