From: Sandra Loosemore <sandra@codesourcery.com>
To: qemu-devel@nongnu.org
Cc: alex.bennee@linaro.org, crwulff@gmail.com, marex@denx.de,
Sandra Loosemore <sandra@codesourcery.com>
Subject: [Qemu-devel] [PATCH] Fix breakpoints in nios2 user-mode emulation.
Date: Tue, 11 Sep 2018 14:29:39 -0700 [thread overview]
Message-ID: <1536701379-106032-1-git-send-email-sandra@codesourcery.com> (raw)
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
next reply other threads:[~2018-09-11 21:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-11 21:29 Sandra Loosemore [this message]
2018-09-12 17:49 ` [Qemu-devel] [PATCH] Fix breakpoints in nios2 user-mode emulation Richard Henderson
2018-09-12 18:01 ` Sandra Loosemore
2018-09-12 18:39 ` Alex Bennée
2018-09-12 19:31 ` Sandra Loosemore
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1536701379-106032-1-git-send-email-sandra@codesourcery.com \
--to=sandra@codesourcery.com \
--cc=alex.bennee@linaro.org \
--cc=crwulff@gmail.com \
--cc=marex@denx.de \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.