diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2021-11-25 15:15:52 +0100 |
---|---|---|
committer | Markus Metzger <markus.t.metzger@intel.com> | 2022-01-27 13:31:20 +0100 |
commit | 696c0d5ef2a6edaa2094e808f53acd502a157641 (patch) | |
tree | 351b7bfa2d640104e2a5b1db0136fc29814ee388 /gdb/target.h | |
parent | b674665b51112de22260709a214d4d6ba01c7e57 (diff) | |
download | gdb-696c0d5ef2a6edaa2094e808f53acd502a157641.zip gdb-696c0d5ef2a6edaa2094e808f53acd502a157641.tar.gz gdb-696c0d5ef2a6edaa2094e808f53acd502a157641.tar.bz2 |
gdb, gdbserver: update thread identifier in enable_btrace target method
The enable_btrace target method takes a ptid_t to identify the thread on
which tracing shall be enabled.
Change this to thread_info * to avoid translating back and forth between
the two. This will be used in a subsequent patch.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/target.h b/gdb/target.h index 1ac7a45..4cc79df 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1151,10 +1151,10 @@ struct target_ops virtual bool can_use_agent () TARGET_DEFAULT_RETURN (false); - /* Enable branch tracing for PTID using CONF configuration. + /* Enable branch tracing for TP using CONF configuration. Return a branch trace target information struct for reading and for disabling branch trace. */ - virtual struct btrace_target_info *enable_btrace (ptid_t ptid, + virtual struct btrace_target_info *enable_btrace (thread_info *tp, const struct btrace_config *conf) TARGET_DEFAULT_NORETURN (tcomplain ()); @@ -2502,7 +2502,7 @@ extern void update_target_permissions (void); /* See to_enable_btrace in struct target_ops. */ extern struct btrace_target_info * - target_enable_btrace (ptid_t ptid, const struct btrace_config *); + target_enable_btrace (thread_info *tp, const struct btrace_config *); /* See to_disable_btrace in struct target_ops. */ extern void target_disable_btrace (struct btrace_target_info *btinfo); |