Deleted Added
sdiff udiff text old ( 12262:a58c0c323e4f ) new ( 12449:2260f4a68210 )
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

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

70 * actually have the definition.
71 */
72#if THE_ISA != NULL_ISA
73#include "cpu/pc_event.hh"
74
75#endif
76
77class BaseRemoteGDB;
78class KvmVM;
79class ObjectFile;
80class ThreadContext;
81
82class System : public MemObject
83{
84 private:
85

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

485 if (!e)
486 panic("Failed to find kernel symbol '%s'", lbl);
487 return e;
488 }
489 /** @} */
490
491 public:
492 std::vector<BaseRemoteGDB *> remoteGDB;
493 bool breakpoint();
494
495 public:
496 typedef SystemParams Params;
497
498 protected:
499 Params *_params;
500

--- 94 unchanged lines hidden ---