summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2023-09-25 14:50:50 -0400
committerMalfurious <m@lfurio.us>2024-04-24 13:31:08 -0400
commit5e20ea14800abaa62b15fcf2bb8462e5661ffdc7 (patch)
tree60452e1c070772538e1f05b5cbfd47637fd496d1
parent566d752918789b178a47393a78b41c90288e40e9 (diff)
downloadmisplays-5e20ea14800abaa62b15fcf2bb8462e5661ffdc7.tar.gz
misplays-5e20ea14800abaa62b15fcf2bb8462e5661ffdc7.zip
Display installed status of breakpoints
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r--misplays.c2
1 files changed, 1 insertions, 1 deletions
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");
}