From 4aad096587a28ef967f319279bca78e2b216b7f3 Mon Sep 17 00:00:00 2001 From: Ilya Leoshkevich Date: Wed, 7 Feb 2024 16:38:08 +0000 Subject: gdbstub: Expose TARGET_SIGTRAP in a target-agnostic way MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The upcoming syscall catchpoint support needs to send SIGTRAP stop packets to GDB. Being able to compile this support only once for all targets is a good thing, and it requires hiding TARGET_SIGTRAP behind a function call. Signed-off-by: Ilya Leoshkevich Message-Id: <20240202152506.279476-2-iii@linux.ibm.com> Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Alex Bennée Message-Id: <20240207163812.3231697-11-alex.bennee@linaro.org> --- gdbstub/user-target.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gdbstub/user-target.c') diff --git a/gdbstub/user-target.c b/gdbstub/user-target.c index c4bba4c72c..b7d4c37cd8 100644 --- a/gdbstub/user-target.c +++ b/gdbstub/user-target.c @@ -418,3 +418,8 @@ void gdb_handle_query_xfer_exec_file(GArray *params, void *user_ctx) ts->bprm->filename + offset); gdb_put_strbuf(); } + +int gdb_target_sigtrap(void) +{ + return TARGET_SIGTRAP; +} -- cgit 1.4.1