Add target_ops argument to to_delete_record
[deliverable/binutils-gdb.git] / gdb / target.c
index 1d069b73dffe77f060e2a10518e6f13843bbfa74..9773f578740944e19c26d5c18c53e8a3df8d835a 100644 (file)
@@ -876,58 +876,63 @@ update_current_target (void)
            (int (*) (struct target_ops *, struct trace_status *))
            return_minus_one);
   de_fault (to_get_tracepoint_status,
-           (void (*) (struct breakpoint *, struct uploaded_tp *))
+           (void (*) (struct target_ops *, struct breakpoint *,
+                      struct uploaded_tp *))
            tcomplain);
   de_fault (to_trace_stop,
-           (void (*) (void))
+           (void (*) (struct target_ops *))
            tcomplain);
   de_fault (to_trace_find,
-           (int (*) (enum trace_find_type, int, CORE_ADDR, CORE_ADDR, int *))
+           (int (*) (struct target_ops *,
+                     enum trace_find_type, int, CORE_ADDR, CORE_ADDR, int *))
            return_minus_one);
   de_fault (to_get_trace_state_variable_value,
-           (int (*) (int, LONGEST *))
+           (int (*) (struct target_ops *, int, LONGEST *))
            return_zero);
   de_fault (to_save_trace_data,
-           (int (*) (const char *))
+           (int (*) (struct target_ops *, const char *))
            tcomplain);
   de_fault (to_upload_tracepoints,
-           (int (*) (struct uploaded_tp **))
+           (int (*) (struct target_ops *, struct uploaded_tp **))
            return_zero);
   de_fault (to_upload_trace_state_variables,
-           (int (*) (struct uploaded_tsv **))
+           (int (*) (struct target_ops *, struct uploaded_tsv **))
            return_zero);
   de_fault (to_get_raw_trace_data,
-           (LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
+           (LONGEST (*) (struct target_ops *, gdb_byte *, ULONGEST, LONGEST))
            tcomplain);
   de_fault (to_get_min_fast_tracepoint_insn_len,
-           (int (*) (void))
+           (int (*) (struct target_ops *))
            return_minus_one);
   de_fault (to_set_disconnected_tracing,
-           (void (*) (int))
+           (void (*) (struct target_ops *, int))
            target_ignore);
   de_fault (to_set_circular_trace_buffer,
-           (void (*) (int))
+           (void (*) (struct target_ops *, int))
            target_ignore);
   de_fault (to_set_trace_buffer_size,
-           (void (*) (LONGEST))
+           (void (*) (struct target_ops *, LONGEST))
            target_ignore);
   de_fault (to_set_trace_notes,
-           (int (*) (const char *, const char *, const char *))
+           (int (*) (struct target_ops *,
+                     const char *, const char *, const char *))
            return_zero);
   de_fault (to_get_tib_address,
-           (int (*) (ptid_t, CORE_ADDR *))
+           (int (*) (struct target_ops *, ptid_t, CORE_ADDR *))
            tcomplain);
   de_fault (to_set_permissions,
-           (void (*) (void))
+           (void (*) (struct target_ops *))
            target_ignore);
   de_fault (to_static_tracepoint_marker_at,
-           (int (*) (CORE_ADDR, struct static_tracepoint_marker *))
+           (int (*) (struct target_ops *,
+                     CORE_ADDR, struct static_tracepoint_marker *))
            return_zero);
   de_fault (to_static_tracepoint_markers_by_strid,
-           (VEC(static_tracepoint_marker_p) * (*) (const char *))
+           (VEC(static_tracepoint_marker_p) * (*) (struct target_ops *,
+                                                   const char *))
            tcomplain);
   de_fault (to_traceframe_info,
-           (struct traceframe_info * (*) (void))
+           (struct traceframe_info * (*) (struct target_ops *))
            return_null);
   de_fault (to_supports_evaluation_of_breakpoint_conditions,
            (int (*) (struct target_ops *))
@@ -936,10 +941,10 @@ update_current_target (void)
            (int (*) (struct target_ops *))
            return_zero);
   de_fault (to_use_agent,
-           (int (*) (int))
+           (int (*) (struct target_ops *, int))
            tcomplain);
   de_fault (to_can_use_agent,
-           (int (*) (void))
+           (int (*) (struct target_ops *))
            return_zero);
   de_fault (to_augmented_libraries_svr4_read,
            (int (*) (void))
@@ -4194,7 +4199,7 @@ target_enable_btrace (ptid_t ptid)
 
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_enable_btrace != NULL)
-      return t->to_enable_btrace (ptid);
+      return t->to_enable_btrace (t, ptid);
 
   tcomplain ();
   return NULL;
@@ -4210,7 +4215,7 @@ target_disable_btrace (struct btrace_target_info *btinfo)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_disable_btrace != NULL)
       {
-       t->to_disable_btrace (btinfo);
+       t->to_disable_btrace (t, btinfo);
        return;
       }
 
@@ -4227,7 +4232,7 @@ target_teardown_btrace (struct btrace_target_info *btinfo)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_teardown_btrace != NULL)
       {
-       t->to_teardown_btrace (btinfo);
+       t->to_teardown_btrace (t, btinfo);
        return;
       }
 
@@ -4245,7 +4250,7 @@ target_read_btrace (VEC (btrace_block_s) **btrace,
 
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_read_btrace != NULL)
-      return t->to_read_btrace (btrace, btinfo, type);
+      return t->to_read_btrace (t, btrace, btinfo, type);
 
   tcomplain ();
   return BTRACE_ERR_NOT_SUPPORTED;
@@ -4261,7 +4266,7 @@ target_stop_recording (void)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_stop_recording != NULL)
       {
-       t->to_stop_recording ();
+       t->to_stop_recording (t);
        return;
       }
 
@@ -4278,7 +4283,7 @@ target_info_record (void)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_info_record != NULL)
       {
-       t->to_info_record ();
+       t->to_info_record (t);
        return;
       }
 
@@ -4295,7 +4300,7 @@ target_save_record (const char *filename)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_save_record != NULL)
       {
-       t->to_save_record (filename);
+       t->to_save_record (t, filename);
        return;
       }
 
@@ -4326,7 +4331,7 @@ target_delete_record (void)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_delete_record != NULL)
       {
-       t->to_delete_record ();
+       t->to_delete_record (t);
        return;
       }
 
This page took 0.026209 seconds and 4 git commands to generate.