Deleted Added
sdiff udiff text old ( 11793:ef606668d247 ) new ( 12637:bfc3cb9c7e6c )
full compact
1/*
2 * Copyright (c) 2012-2014 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#include "mem/mem_checker_monitor.hh"
43
44#include <memory>
45
46#include "base/output.hh"
47#include "base/trace.hh"
48#include "debug/MemCheckerMonitor.hh"
49
50MemCheckerMonitor::MemCheckerMonitor(Params* params)
51 : MemObject(params),
52 masterPort(name() + "-master", *this),
53 slavePort(name() + "-slave", *this),
54 warnOnly(params->warn_only),
55 memchecker(params->memchecker)
56{}
57

--- 316 unchanged lines hidden ---