From 5e20ea14800abaa62b15fcf2bb8462e5661ffdc7 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Mon, 25 Sep 2023 14:50:50 -0400 Subject: Display installed status of breakpoints Signed-off-by: Malfurious --- misplays.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misplays.c b/misplays.c index 4fec040..0910012 100644 --- a/misplays.c +++ b/misplays.c @@ -43,7 +43,7 @@ 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 ", bp->address); + pprintw(pan, "0x%lx (%c) ", bp->address, (bp->installed ? '*' : ' ')); } pprintw(pan, "\n"); } -- cgit v1.2.3