1/*
2 * Copyright (c) 2012-2013, 2015-2016 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

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

43 */
44
45/** @file
46 * Definition of WriteQueue class functions.
47 */
48
49#include "mem/cache/write_queue.hh"
50
51using namespace std;
52
51WriteQueue::WriteQueue(const std::string &_label,
52 int num_entries, int reserve)
53 : Queue<WriteQueueEntry>(_label, num_entries, reserve)
54{}
55
56WriteQueueEntry *
57WriteQueue::allocate(Addr blk_addr, unsigned blk_size, PacketPtr pkt,
58 Tick when_ready, Counter order)

--- 24 unchanged lines hidden ---