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:
parent
c4517804fd
commit
bd74b169fb
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-08-29 Mikhail Khodjaiants
|
||||||
|
Label for target suspended by shared library event.
|
||||||
|
* CDTDebugModelPresentation.java
|
||||||
|
|
||||||
2003-08-19 Mikhail Khodjaiants
|
2003-08-19 Mikhail Khodjaiants
|
||||||
* plugin.properties: "Restore Default Type" changed to "Restore Original Type".
|
* plugin.properties: "Restore Default Type" changed to "Restore Original Type".
|
||||||
|
|
||||||
|
|
|
@ -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.ICDIBreakpointHit;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
|
import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
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.ICDISignalExitInfo;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDISignalReceived;
|
import org.eclipse.cdt.debug.core.cdi.ICDISignalReceived;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDIWatchpointScope;
|
import org.eclipse.cdt.debug.core.cdi.ICDIWatchpointScope;
|
||||||
|
@ -475,6 +476,10 @@ public class CDTDebugModelPresentation extends LabelProvider
|
||||||
{
|
{
|
||||||
return target.getName() + " (Breakpoint hit)";
|
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 )
|
if ( info != null && info instanceof ICDISession )
|
||||||
{
|
{
|
||||||
return target.getName() + " (Suspended)";
|
return target.getName() + " (Suspended)";
|
||||||
|
|
Loading…
Add table
Reference in a new issue