mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 15:05:36 +02:00
Render debug target as suspended if no reason is specified.
This commit is contained in:
parent
200f697775
commit
d11b492c7c
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2002-11-27 Mikhail Khodjaiants
|
||||||
|
Render debug target as suspended if no reason is specified.
|
||||||
|
* CDTDebugModelPresentation.java
|
||||||
|
|
||||||
2002-11-26 Mikhail Khodjaiants
|
2002-11-26 Mikhail Khodjaiants
|
||||||
Fix for evaluation of expression to address in the Memory view.
|
Fix for evaluation of expression to address in the Memory view.
|
||||||
GDB evaluates the array of chars to a string not an address.
|
GDB evaluates the array of chars to a string not an address.
|
||||||
|
|
|
@ -362,6 +362,10 @@ public class CDTDebugModelPresentation extends LabelProvider
|
||||||
{
|
{
|
||||||
return target.getName() + " (Breakpoint hit)";
|
return target.getName() + " (Breakpoint hit)";
|
||||||
}
|
}
|
||||||
|
if ( info == null )
|
||||||
|
{
|
||||||
|
return target.getName() + " (Suspended)";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue