1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Fire the resume event instead of the change event when a non-current thread is resumed.

This commit is contained in:
Mikhail Khodjaiants 2006-02-20 22:51:50 +00:00
parent c249d2f543
commit b0f0e7e414
2 changed files with 5 additions and 1 deletions

View file

@ -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 2006-02-20 Mikhail Khodjaiants
CModuleManager needs to extend PlatformObject to be accessible as an adapter CModuleManager needs to extend PlatformObject to be accessible as an adapter
for IModuleRetrival. for IModuleRetrival.

View file

@ -895,7 +895,7 @@ public class CThread extends CDebugElement implements ICThread, IRestart, IResum
else { else {
setState( CDebugElementState.RESUMED ); setState( CDebugElementState.RESUMED );
disposeStackFrames(); disposeStackFrames();
events.add( createChangeEvent( DebugEvent.CONTENT ) ); events.add( createResumeEvent( DebugEvent.CLIENT_REQUEST ) );
} }
setCurrent( false ); setCurrent( false );
setCurrentStateInfo( null ); setCurrentStateInfo( null );