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:
parent
f9c1ebf0c8
commit
2f616a8c07
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue