Add target_ops argument to to_teardown_btrace
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 04:46:00 +0000 (21:46 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:46:44 +0000 (07:46 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target.h (struct target_ops) <to_teardown_btrace>: Add argument.
* target.c (target_teardown_btrace): Add argument.
* remote.c (remote_teardown_btrace): Add 'self' argument.
* i386-linux-nat.c (i386_linux_teardown_btrace): Add 'self'
argument.
* amd64-linux-nat.c (amd64_linux_teardown_btrace): Add 'self'
argument.

gdb/ChangeLog
gdb/amd64-linux-nat.c
gdb/i386-linux-nat.c
gdb/remote.c
gdb/target.c
gdb/target.h

index f645612ac712956bae8530b9bf6e5e404d5f8db6..5c9b175e5e0e0be27b5eef9822b16daf8ba95fce 100644 (file)
@@ -1,3 +1,13 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_teardown_btrace>: Add argument.
+       * target.c (target_teardown_btrace): Add argument.
+       * remote.c (remote_teardown_btrace): Add 'self' argument.
+       * i386-linux-nat.c (i386_linux_teardown_btrace): Add 'self'
+       argument.
+       * amd64-linux-nat.c (amd64_linux_teardown_btrace): Add 'self'
+       argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_disable_btrace>: Add argument.
index b72bb8467bcc6a97d3293257b83b0e631ac1b447..d7256c3ef57693eda5ce14151dc5d1ed76239fd4 100644 (file)
@@ -1184,7 +1184,8 @@ amd64_linux_disable_btrace (struct target_ops *self,
 /* Teardown branch tracing.  */
 
 static void
-amd64_linux_teardown_btrace (struct btrace_target_info *tinfo)
+amd64_linux_teardown_btrace (struct target_ops *self,
+                            struct btrace_target_info *tinfo)
 {
   /* Ignore errors.  */
   linux_disable_btrace (tinfo);
index 9c990361135aba3d5c2b06d1a3a18764acf0dbf7..0f8bc82219aa74c21fc07bf9567a3c5c258e3b07 100644 (file)
@@ -1095,7 +1095,8 @@ i386_linux_disable_btrace (struct target_ops *self,
 /* Teardown branch tracing.  */
 
 static void
-i386_linux_teardown_btrace (struct btrace_target_info *tinfo)
+i386_linux_teardown_btrace (struct target_ops *self,
+                           struct btrace_target_info *tinfo)
 {
   /* Ignore errors.  */
   linux_disable_btrace (tinfo);
index 939d2667f10d9d10b5f796de2aac243b4ba58594..b77ea81549b136a780fe0018905da138690de58f 100644 (file)
@@ -11312,7 +11312,8 @@ remote_disable_btrace (struct target_ops *self,
 /* Teardown branch tracing.  */
 
 static void
-remote_teardown_btrace (struct btrace_target_info *tinfo)
+remote_teardown_btrace (struct target_ops *self,
+                       struct btrace_target_info *tinfo)
 {
   /* We must not talk to the target during teardown.  */
   xfree (tinfo);
index 06ada9c21430eb940bfffe0ef6005d97858b9c49..e1ffaf0df68d71a91cfef2ca936261d896502a77 100644 (file)
@@ -4232,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;
       }
 
index 123282ae753190afacff252eb9ac45b59b49f160..982bc185b64627b400d956dd4d052c444789c3e1 100644 (file)
@@ -914,7 +914,8 @@ struct target_ops
        to to_disable_btrace, except that it is called during teardown and is
        only allowed to perform actions that are safe.  A counter-example would
        be attempting to talk to a remote target.  */
-    void (*to_teardown_btrace) (struct btrace_target_info *tinfo);
+    void (*to_teardown_btrace) (struct target_ops *,
+                               struct btrace_target_info *tinfo);
 
     /* Read branch trace data for the thread indicated by BTINFO into DATA.
        DATA is cleared before new trace is added.