1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-14 03:35:37 +02:00

Label for target suspended by shared library event.

This commit is contained in:
Mikhail Khodjaiants 2003-08-29 22:04:02 +00:00
parent c4517804fd
commit bd74b169fb
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2003-08-29 Mikhail Khodjaiants
Label for target suspended by shared library event.
* CDTDebugModelPresentation.java
2003-08-19 Mikhail Khodjaiants
* plugin.properties: "Restore Default Type" changed to "Restore Original Type".

View file

@ -14,6 +14,7 @@ import org.eclipse.cdt.debug.core.CDebugUtils;
import org.eclipse.cdt.debug.core.cdi.ICDIBreakpointHit;
import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
import org.eclipse.cdt.debug.core.cdi.ICDISession;
import org.eclipse.cdt.debug.core.cdi.ICDISharedLibraryEvent;
import org.eclipse.cdt.debug.core.cdi.ICDISignalExitInfo;
import org.eclipse.cdt.debug.core.cdi.ICDISignalReceived;
import org.eclipse.cdt.debug.core.cdi.ICDIWatchpointScope;
@ -475,6 +476,10 @@ public class CDTDebugModelPresentation extends LabelProvider
{
return target.getName() + " (Breakpoint hit)";
}
if ( info != null && info instanceof ICDISharedLibraryEvent )
{
return target.getName() + " (Stopped on shared library event)";
}
if ( info != null && info instanceof ICDISession )
{
return target.getName() + " (Suspended)";