Comment out the remote gdb object for SE mode.

--HG--
extra : convert_revision : a582684f3a2dd1d1d0d8b93a9e213d9108491535
This commit is contained in:
Gabe Black 2007-04-09 18:30:50 +00:00
parent 64b4572c3e
commit d54b8b73ed

View file

@ -157,12 +157,12 @@ Process::registerThreadContext(ThreadContext *tc)
int myIndex = threadContexts.size(); int myIndex = threadContexts.size();
threadContexts.push_back(tc); threadContexts.push_back(tc);
RemoteGDB *rgdb = new RemoteGDB(system, tc); // RemoteGDB *rgdb = new RemoteGDB(system, tc);
GDBListener *gdbl = new GDBListener(rgdb, 7000 + myIndex); // GDBListener *gdbl = new GDBListener(rgdb, 7000 + myIndex);
gdbl->listen(); // gdbl->listen();
//gdbl->accept(); //gdbl->accept();
remoteGDB.push_back(rgdb); // remoteGDB.push_back(rgdb);
// return CPU number to caller // return CPU number to caller
return myIndex; return myIndex;