mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 01:06:01 +02:00
More implementation.
This commit is contained in:
parent
43af81fb53
commit
b633a55f0d
1 changed files with 2 additions and 2 deletions
|
@ -634,12 +634,12 @@ public class CDebugTarget extends CDebugElement
|
|||
}
|
||||
else if ( event instanceof ICDISuspendedEvent )
|
||||
{
|
||||
if ( source instanceof ICDITarget )
|
||||
if ( source instanceof ICDITarget || source instanceof ICDIThread )
|
||||
{
|
||||
handleSuspendedEvent( (ICDISuspendedEvent)event );
|
||||
}
|
||||
}
|
||||
else if ( event instanceof ICDIResumedEvent )
|
||||
else if ( event instanceof ICDIResumedEvent || source instanceof ICDIThread )
|
||||
{
|
||||
if ( source instanceof ICDITarget )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue