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

Changed the processing of the termination event.

This commit is contained in:
Mikhail Khodjaiants 2002-08-18 21:26:05 +00:00
parent a2d2f711a3
commit 078fe83ba3

View file

@ -375,6 +375,8 @@ public class CThread extends CDebugElement
public void handleDebugEvent( ICDIEvent event ) public void handleDebugEvent( ICDIEvent event )
{ {
ICDIObject source = event.getSource(); ICDIObject source = event.getSource();
if ( source == null )
return;
if ( source.getTarget().equals( getCDITarget() ) ) if ( source.getTarget().equals( getCDITarget() ) )
{ {
if ( event instanceof ICDISuspendedEvent ) if ( event instanceof ICDISuspendedEvent )