gdb/gdbserver:

* tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
	`stop_pc' and `tpoint'.  Update caller.
This commit is contained in:
Yao Qi 2012-03-02 00:12:47 +00:00
parent 693be288fc
commit 19560ba53e
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2012-03-02 Yao Qi <yao@codesourcery.com>
* tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
`stop_pc' and `tpoint'. Update caller.
2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
* linux-low.h (linux_target_ops): Add regset_bitmap member.

View File

@ -4264,8 +4264,6 @@ tracepoint_was_hit (struct thread_info *tinfo, CORE_ADDR stop_pc)
#if defined IN_PROCESS_AGENT && defined HAVE_UST
struct ust_marker_data;
static void collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
CORE_ADDR stop_pc,
struct tracepoint *tpoint,
struct traceframe *tframe);
#endif
@ -4504,8 +4502,7 @@ do_action_at_tracepoint (struct tracepoint_hit_ctx *ctx,
{
#if defined IN_PROCESS_AGENT && defined HAVE_UST
trace_debug ("Want to collect static trace data");
collect_ust_data_at_tracepoint (ctx, stop_pc,
tpoint, tframe);
collect_ust_data_at_tracepoint (ctx, tframe);
#else
trace_debug ("warning: collecting static trace data, "
"but static tracepoints are not supported");
@ -6340,8 +6337,6 @@ gdb_probe (const struct marker *mdata, void *probe_private,
static void
collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
CORE_ADDR stop_pc,
struct tracepoint *tpoint,
struct traceframe *tframe)
{
struct static_tracepoint_ctx *umd = (struct static_tracepoint_ctx *) ctx;