mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 01:06:01 +02:00
Fire the resume event instead of the change event when a non-current thread is resumed.
This commit is contained in:
parent
c249d2f543
commit
b0f0e7e414
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2006-02-20 Mikhail Khodjaiants
|
||||
Fire the resume event instead of the change event when a non-current thread is resumed.
|
||||
* CThread.java
|
||||
|
||||
2006-02-20 Mikhail Khodjaiants
|
||||
CModuleManager needs to extend PlatformObject to be accessible as an adapter
|
||||
for IModuleRetrival.
|
||||
|
|
|
@ -895,7 +895,7 @@ public class CThread extends CDebugElement implements ICThread, IRestart, IResum
|
|||
else {
|
||||
setState( CDebugElementState.RESUMED );
|
||||
disposeStackFrames();
|
||||
events.add( createChangeEvent( DebugEvent.CONTENT ) );
|
||||
events.add( createResumeEvent( DebugEvent.CLIENT_REQUEST ) );
|
||||
}
|
||||
setCurrent( false );
|
||||
setCurrentStateInfo( null );
|
||||
|
|
Loading…
Add table
Reference in a new issue