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

More implementation.

This commit is contained in:
Mikhail Khodjaiants 2002-08-14 17:39:35 +00:00
parent 43af81fb53
commit b633a55f0d

View file

@ -634,12 +634,12 @@ public class CDebugTarget extends CDebugElement
} }
else if ( event instanceof ICDISuspendedEvent ) else if ( event instanceof ICDISuspendedEvent )
{ {
if ( source instanceof ICDITarget ) if ( source instanceof ICDITarget || source instanceof ICDIThread )
{ {
handleSuspendedEvent( (ICDISuspendedEvent)event ); handleSuspendedEvent( (ICDISuspendedEvent)event );
} }
} }
else if ( event instanceof ICDIResumedEvent ) else if ( event instanceof ICDIResumedEvent || source instanceof ICDIThread )
{ {
if ( source instanceof ICDITarget ) if ( source instanceof ICDITarget )
{ {