From: Gabe Black Date: Mon, 9 Apr 2007 18:30:50 +0000 (+0000) Subject: Comment out the remote gdb object for SE mode. X-Git-Tag: m5_2.0_beta3~44 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d54b8b73ed4185caadc9882d51c01fdc889035a0;p=gem5.git Comment out the remote gdb object for SE mode. --HG-- extra : convert_revision : a582684f3a2dd1d1d0d8b93a9e213d9108491535 --- diff --git a/src/sim/process.cc b/src/sim/process.cc index 2b283c9d1..68239fa52 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -157,12 +157,12 @@ Process::registerThreadContext(ThreadContext *tc) int myIndex = threadContexts.size(); threadContexts.push_back(tc); - RemoteGDB *rgdb = new RemoteGDB(system, tc); - GDBListener *gdbl = new GDBListener(rgdb, 7000 + myIndex); - gdbl->listen(); +// RemoteGDB *rgdb = new RemoteGDB(system, tc); +// GDBListener *gdbl = new GDBListener(rgdb, 7000 + myIndex); +// gdbl->listen(); //gdbl->accept(); - remoteGDB.push_back(rgdb); +// remoteGDB.push_back(rgdb); // return CPU number to caller return myIndex;