From b3adf1817b24bdcff3b2ecc1128ec5fa9e57fd23 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Sat, 27 Apr 2024 12:42:43 -0400 Subject: Show breakpoint limiters in the test UI Display the value of active breakpoint threads, target stack frames, and enable status. Signed-off-by: Malfurious --- misplays.c | 5 +++-- 1 file 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"); } -- cgit v1.2.3