1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 126958: wrong state setting for thread in CThread.handleResumeEvent().

This commit is contained in:
Mikhail Khodjaiants 2006-02-08 20:10:17 +00:00
parent f9c1ebf0c8
commit 2f616a8c07
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-02-08 Mikhail Khodjaiants
Bug 126958: wrong state setting for thread in CThread.handleResumeEvent().
* CThread.java
2006-01-30 Mikhail Khodjaiants 2006-01-30 Mikhail Khodjaiants
Bug 125603: Debugger don't stop on breakpoints if src is linked. Bug 125603: Debugger don't stop on breakpoints if src is linked.
* CSourceLookupDirector.java * CSourceLookupDirector.java

View file

@ -707,7 +707,7 @@ public class CThread extends CDebugElement implements ICThread, IRestart, IResum
detail = DebugEvent.STEP_RETURN; detail = DebugEvent.STEP_RETURN;
break; break;
} }
state = CDebugElementState.STEPPING; state = CDebugElementState.STEPPED;
} }
else { else {
disposeStackFrames(); disposeStackFrames();