|
@@ -187,7 +187,7 @@ typedef union GdbCmdVariant {
|
|
|
|
|
|
#define get_param(p, i) (&g_array_index(p, GdbCmdVariant, i))
|
|
|
|
|
|
-void gdb_handle_query_rcmd(GArray *params, void *user_ctx); /* system */
|
|
|
+void gdb_handle_query_rcmd(GArray *params, void *ctx); /* system */
|
|
|
void gdb_handle_query_offsets(GArray *params, void *user_ctx); /* user */
|
|
|
void gdb_handle_query_xfer_auxv(GArray *params, void *user_ctx); /*user */
|
|
|
void gdb_handle_query_xfer_siginfo(GArray *params, void *user_ctx); /*user */
|
|
@@ -201,11 +201,11 @@ void gdb_handle_query_supported_user(const char *gdb_supported); /* user */
|
|
|
bool gdb_handle_set_thread_user(uint32_t pid, uint32_t tid); /* user */
|
|
|
bool gdb_handle_detach_user(uint32_t pid); /* user */
|
|
|
|
|
|
-void gdb_handle_query_attached(GArray *params, void *user_ctx); /* both */
|
|
|
+void gdb_handle_query_attached(GArray *params, void *ctx); /* both */
|
|
|
|
|
|
/* system only */
|
|
|
-void gdb_handle_query_qemu_phy_mem_mode(GArray *params, void *user_ctx);
|
|
|
-void gdb_handle_set_qemu_phy_mem_mode(GArray *params, void *user_ctx);
|
|
|
+void gdb_handle_query_qemu_phy_mem_mode(GArray *params, void *ctx);
|
|
|
+void gdb_handle_set_qemu_phy_mem_mode(GArray *params, void *ctx);
|
|
|
|
|
|
/* sycall handling */
|
|
|
void gdb_handle_file_io(GArray *params, void *user_ctx);
|