diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 18:29:58 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 18:29:58 -0500 |
commit | 85a6079db7c2e7146dc437c9c032d2aa56dd9048 (patch) | |
tree | 8a62bbaf9b80b2e645731982332fcf1abb7ad16c /src/sim/system.hh | |
parent | e39de58d21723df527ec979cde1df29980fab234 (diff) | |
download | gem5-85a6079db7c2e7146dc437c9c032d2aa56dd9048.tar.xz |
Remote GDB support has been changed to use inheritance. Alpha should work, but isn't tested. Other architectures will not.
--HG--
extra : convert_revision : fc7e1e73e2f3b1a4ab9905a1eb98c5f07c6c8707
Diffstat (limited to 'src/sim/system.hh')
-rw-r--r-- | src/sim/system.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/sim/system.hh b/src/sim/system.hh index 827fe5c78..b3a67bf7a 100644 --- a/src/sim/system.hh +++ b/src/sim/system.hh @@ -56,7 +56,10 @@ class PhysicalMemory; #if FULL_SYSTEM class Platform; class GDBListener; -class RemoteGDB; +namespace TheISA +{ + class RemoteGDB; +} #endif class System : public SimObject @@ -157,7 +160,7 @@ class System : public SimObject #endif public: #if FULL_SYSTEM - std::vector<RemoteGDB *> remoteGDB; + std::vector<TheISA::RemoteGDB *> remoteGDB; std::vector<GDBListener *> gdbListen; virtual bool breakpoint() = 0; #endif // FULL_SYSTEM |