1
0
Fork 0
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:
Mikhail Khodjaiants 2002-11-27 15:50:38 +00:00
parent 200f697775
commit d11b492c7c
2 changed files with 8 additions and 0 deletions

View file

@ -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
Fix for evaluation of expression to address in the Memory view.
GDB evaluates the array of chars to a string not an address.

View file

@ -362,6 +362,10 @@ public class CDTDebugModelPresentation extends LabelProvider
{
return target.getName() + " (Breakpoint hit)";
}
if ( info == null )
{
return target.getName() + " (Suspended)";
}
}
}
}