Add target_ops argument to to_insert_exec_catchpoint
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 04:32:41 +0000 (21:32 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:45:47 +0000 (07:45 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target.h (struct target_ops) <to_insert_exec_catchpoint>: Add
argument.
(target_insert_exec_catchpoint): Add argument.
* target.c (debug_to_insert_exec_catchpoint): Add argument.
(update_current_target): Update.
* linux-nat.c (linux_child_insert_exec_catchpoint): Add 'self'
argument.

gdb/ChangeLog
gdb/linux-nat.c
gdb/target.c
gdb/target.h

index f9ab94b5c3bdfbac66b61361295950bc134f0385..c2bb891e463c3a65fa3e6d6659342b22c30190d1 100644 (file)
@@ -1,3 +1,13 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_insert_exec_catchpoint>: Add
+       argument.
+       (target_insert_exec_catchpoint): Add argument.
+       * target.c (debug_to_insert_exec_catchpoint): Add argument.
+       (update_current_target): Update.
+       * linux-nat.c (linux_child_insert_exec_catchpoint): Add 'self'
+       argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_remove_vfork_catchpoint>: Add
index fa862f6720c091012b087283ee6e3fa34bb17eda..1a37ec5552a8feec3ece6fe0c5a06ff9a7368880 100644 (file)
@@ -720,7 +720,7 @@ linux_child_remove_vfork_catchpoint (struct target_ops *self, int pid)
 }
 
 static int
-linux_child_insert_exec_catchpoint (int pid)
+linux_child_insert_exec_catchpoint (struct target_ops *self, int pid)
 {
   return !linux_supports_tracefork ();
 }
index edc3b970fbea51e1e5fb533e258a0a236afce976..0b10f39a86776fe63f06384cdec3a022a2140368 100644 (file)
@@ -804,7 +804,7 @@ update_current_target (void)
            (int (*) (struct target_ops *, int))
            return_one);
   de_fault (to_insert_exec_catchpoint,
-           (int (*) (int))
+           (int (*) (struct target_ops *, int))
            return_one);
   de_fault (to_remove_exec_catchpoint,
            (int (*) (int))
@@ -4918,11 +4918,11 @@ debug_to_remove_vfork_catchpoint (struct target_ops *self, int pid)
 }
 
 static int
-debug_to_insert_exec_catchpoint (int pid)
+debug_to_insert_exec_catchpoint (struct target_ops *self, int pid)
 {
   int retval;
 
-  retval = debug_target.to_insert_exec_catchpoint (pid);
+  retval = debug_target.to_insert_exec_catchpoint (&debug_target, pid);
 
   fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
                      pid, retval);
index 0717e1a0b6a37da6b44286b7f8658360f0b73403..e1925638437376204833d48212fdff6b03defd12 100644 (file)
@@ -503,7 +503,7 @@ struct target_ops
     int (*to_insert_vfork_catchpoint) (struct target_ops *, int);
     int (*to_remove_vfork_catchpoint) (struct target_ops *, int);
     int (*to_follow_fork) (struct target_ops *, int, int);
-    int (*to_insert_exec_catchpoint) (int);
+    int (*to_insert_exec_catchpoint) (struct target_ops *, int);
     int (*to_remove_exec_catchpoint) (int);
     int (*to_set_syscall_catchpoint) (int, int, int, int, int *);
     int (*to_has_exited) (int, int, int *);
@@ -1333,7 +1333,7 @@ int target_follow_fork (int follow_child, int detach_fork);
    catchpoint type is not supported and -1 for failure.  */
 
 #define target_insert_exec_catchpoint(pid) \
-     (*current_target.to_insert_exec_catchpoint) (pid)
+     (*current_target.to_insert_exec_catchpoint) (&current_target, pid)
 
 #define target_remove_exec_catchpoint(pid) \
      (*current_target.to_remove_exec_catchpoint) (pid)