Changeset 741 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/CDebugThreadInfo.cpp
- Timestamp:
- Sep 7, 2008, 12:05:40 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/CDebugThreadInfo.cpp
r740 r741 10 10 11 11 extern HANDLE hDebugProcess; 12 extern DebugSectionCollection debugSectionCollection; 12 13 13 14 CDebugThreadInfo *pobj_dti; … … 27 28 28 29 DWORD dwRWSectionPos; 29 dwRWSectionPos= pobj_DBDebugSection->debugSections[0]->dwImageBase+30 pobj_DBDebugSection->debugSections[0]->dwRVA_RWSection;30 dwRWSectionPos=debugSectionCollection.debugSections[0]->dwImageBase+ 31 debugSectionCollection.debugSections[0]->dwRVA_RWSection; 31 32 32 33 ReadProcessMemory(hDebugProcess, … … 80 81 extern DWORD ImageBase; 81 82 if((HMODULE)(ULONG_PTR)ImageBase!=hTargetModule){ 82 for(i=0;i< pobj_DBDebugSection->debugSections.size();i++){83 if((HMODULE)(ULONG_PTR) pobj_DBDebugSection->debugSections[i]->dwImageBase==hTargetModule){84 pobj_DBDebugSection->choice(i);83 for(i=0;i<debugSectionCollection.debugSections.size();i++){ 84 if((HMODULE)(ULONG_PTR)debugSectionCollection.debugSections[i]->dwImageBase==hTargetModule){ 85 debugSectionCollection.choice(i); 85 86 break; 86 87 }
Note:
See TracChangeset
for help on using the changeset viewer.