Deleted Added
sdiff udiff text old ( 10713:eddb533708cb ) new ( 13784:1941dc118243 )
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

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

65 *
66 * @param params Python parameters
67 */
68 MemCheckerMonitor(Params* params);
69
70 /** Destructor */
71 ~MemCheckerMonitor();
72
73 virtual BaseMasterPort& getMasterPort(const std::string& if_name,
74 PortID idx = InvalidPortID);
75
76 virtual BaseSlavePort& getSlavePort(const std::string& if_name,
77 PortID idx = InvalidPortID);
78
79 virtual void init();
80
81 private:
82
83 struct MemCheckerMonitorSenderState : public Packet::SenderState
84 {
85 MemCheckerMonitorSenderState(MemChecker::Serial _serial)
86 : serial(_serial)

--- 154 unchanged lines hidden ---