diff options
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/process.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sim/process.cc b/src/sim/process.cc index 8f36fba1b..6ec7c8609 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -159,12 +159,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; |