diff options
-rw-r--r-- | misplays.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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"); } |