summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-09-29 09:21:22 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-09-29 09:21:22 -0700
commit42038b1eaca64e76de52adc93d12ef2927428677 (patch)
treeca135569b935f3724bea7413138c69ad5938977c /scope.c
parent3d55f9b61ba23234c5355ed725963fdc0e520d45 (diff)
downloadxscope-42038b1eaca64e76de52adc93d12ef2927428677.tar.gz
Show request name, not just number, in breakpoint list
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/scope.c b/scope.c
index dd7b717..5b357f8 100644
--- a/scope.c
+++ b/scope.c
@@ -443,8 +443,11 @@ CMDBreak (
{
for (bp = breakPoints; bp; bp = bp->next)
{
- printf ("%3d: %3d %s\n", bp->number, bp->request,
- bp->enabled ? "enabled" : "disabled");
+ printf ("%3d: %s %3d ", bp->number,
+ bp->enabled ? "enabled" : "disabled",
+ bp->request);
+ PrintENUMERATED(&bp->request, 1, TD[REQUEST].ValueList);
+ printf ("\n");
}
}
else