diff options
author | Malfurious <m@lfurio.us> | 2023-09-25 14:50:50 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-04-24 13:31:08 -0400 |
commit | 5e20ea14800abaa62b15fcf2bb8462e5661ffdc7 (patch) | |
tree | 60452e1c070772538e1f05b5cbfd47637fd496d1 | |
parent | 566d752918789b178a47393a78b41c90288e40e9 (diff) | |
download | misplays-5e20ea14800abaa62b15fcf2bb8462e5661ffdc7.tar.gz misplays-5e20ea14800abaa62b15fcf2bb8462e5661ffdc7.zip |
Display installed status of breakpoints
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | misplays.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); } |