gdbstub: Expose TARGET_SIGTRAP in a target-agnostic way
authorIlya Leoshkevich <iii@linux.ibm.com>
Wed, 7 Feb 2024 16:38:08 +0000 (16:38 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Fri, 9 Feb 2024 17:52:40 +0000 (17:52 +0000)
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 <iii@linux.ibm.com>
Message-Id: <20240202152506.279476-2-iii@linux.ibm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240207163812.3231697-11-alex.bennee@linaro.org>

gdbstub/internals.h
gdbstub/user-target.c

index 5c0c725e54cfd114c3b25c3e6b5ba4905c26e601..aeb0d9b5377b1402dca426316da754112ef16836 100644 (file)
@@ -136,6 +136,7 @@ void gdb_append_thread_id(CPUState *cpu, GString *buf);
 int gdb_get_cpu_index(CPUState *cpu);
 unsigned int gdb_get_max_cpus(void); /* both */
 bool gdb_can_reverse(void); /* softmmu, stub for user */
+int gdb_target_sigtrap(void); /* user */
 
 void gdb_create_default_process(GDBState *s);
 
index c4bba4c72c7f9a6aa27c00bd6ea4fc71e47d869a..b7d4c37cd8161fe17d2bef2d749f1df7439dcc7a 100644 (file)
@@ -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;
+}