qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix breakpoints in nios2 user-mode emulation.
@ 2018-09-11 21:29 Sandra Loosemore
  2018-09-12 17:49 ` Richard Henderson
  0 siblings, 1 reply; 5+ messages in thread
From: Sandra Loosemore @ 2018-09-11 21:29 UTC (permalink / raw)
  To: qemu-devel; +Cc: alex.bennee, crwulff, marex, Sandra Loosemore

Without this patch, QEMU exits immediately when it execution stops at
a breakpoint, instead of reporting it to GDB.

Signed-off-by: Sandra Loosemore <sandra@codesourcery.com>
---
 linux-user/nios2/cpu_loop.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/linux-user/nios2/cpu_loop.c b/linux-user/nios2/cpu_loop.c
index dac7a06..a5ae37f 100644
--- a/linux-user/nios2/cpu_loop.c
+++ b/linux-user/nios2/cpu_loop.c
@@ -71,6 +71,9 @@ void cpu_loop(CPUNios2State *env)
                 gdbsig = TARGET_SIGTRAP;
                 break;
             }
+        case EXCP_DEBUG:
+            gdbsig = TARGET_SIGTRAP;
+            break;
         case 0xaa:
             switch (env->regs[R_PC]) {
             /*case 0x1000:*/  /* TODO:__kuser_helper_version */
-- 
2.8.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-09-12 19:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-11 21:29 [Qemu-devel] [PATCH] Fix breakpoints in nios2 user-mode emulation Sandra Loosemore
2018-09-12 17:49 ` Richard Henderson
2018-09-12 18:01   ` Sandra Loosemore
2018-09-12 18:39   ` Alex Bennée
2018-09-12 19:31     ` Sandra Loosemore

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).