summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--misplays.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/misplays.c b/misplays.c
index 1ccf3d3..96a9150 100644
--- a/misplays.c
+++ b/misplays.c
@@ -44,10 +44,11 @@ static void list_breakpoints(struct thread *dbg, PANEL *pan) {
pprintw(pan, "---\n");
for (struct breakpoint *bp=breaks->head; bp!=breaks->end; bp=bp->next) {
- pprintw(pan, "0x%lx (%c) (%i) ",
+ pprintw(pan, "0x%lx (%c) (%i) stack=0x%lx tid=%lu enabled=%d",
bp->address,
(bp->installed ? '*' : ' '),
- bp->hits);
+ bp->hits,
+ bp->stack, bp->tid, bp->enabled);
}
pprintw(pan, "\n");
}