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

* windows-nat.c (windows_get_ada_task_ptid): Add 'self' argument.
* target.h (struct target_ops) <to_get_ada_task_ptid>: Add
argument.
(target_get_ada_task_ptid): Add argument.
* target.c (update_current_target): Update.
(default_get_ada_task_ptid): Add 'self' argument.
* sol-thread.c (sol_get_ada_task_ptid): Add 'self' argument.
* remote.c (remote_get_ada_task_ptid): Add 'self' argument.
* ravenscar-thread.c (ravenscar_get_ada_task_ptid): Add 'self'
argument.
* linux-thread-db.c (thread_db_get_ada_task_ptid): Add 'self'
argument.
* inf-ttrace.c (inf_ttrace_get_ada_task_ptid): Add 'self'
argument.
* dec-thread.c (dec_thread_get_ada_task_ptid): Add 'self'
argument.
* darwin-nat.c (darwin_get_ada_task_ptid): Add 'self' argument.
* aix-thread.c (aix_thread_get_ada_task_ptid): Add 'self'
argument.

12 files changed:
gdb/ChangeLog
gdb/aix-thread.c
gdb/darwin-nat.c
gdb/dec-thread.c
gdb/inf-ttrace.c
gdb/linux-thread-db.c
gdb/ravenscar-thread.c
gdb/remote.c
gdb/sol-thread.c
gdb/target.c
gdb/target.h
gdb/windows-nat.c

index b9edea7346bb724e79d9760b7d4ebdf0bf8099a3..cfa06ee20de7f7649c5cdc0e8c7f3542b3aa465f 100644 (file)
@@ -1,3 +1,25 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * windows-nat.c (windows_get_ada_task_ptid): Add 'self' argument.
+       * target.h (struct target_ops) <to_get_ada_task_ptid>: Add
+       argument.
+       (target_get_ada_task_ptid): Add argument.
+       * target.c (update_current_target): Update.
+       (default_get_ada_task_ptid): Add 'self' argument.
+       * sol-thread.c (sol_get_ada_task_ptid): Add 'self' argument.
+       * remote.c (remote_get_ada_task_ptid): Add 'self' argument.
+       * ravenscar-thread.c (ravenscar_get_ada_task_ptid): Add 'self'
+       argument.
+       * linux-thread-db.c (thread_db_get_ada_task_ptid): Add 'self'
+       argument.
+       * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): Add 'self'
+       argument.
+       * dec-thread.c (dec_thread_get_ada_task_ptid): Add 'self'
+       argument.
+       * darwin-nat.c (darwin_get_ada_task_ptid): Add 'self' argument.
+       * aix-thread.c (aix_thread_get_ada_task_ptid): Add 'self'
+       argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_goto_bookmark>: Add argument.
index d0ad9151b7941c4771184c53b5b66fdf0d6e517e..c01a7c56907618580d4fcc8b86cedec6b556577e 100644 (file)
@@ -1806,7 +1806,7 @@ aix_thread_extra_thread_info (struct target_ops *self,
 }
 
 static ptid_t
-aix_thread_get_ada_task_ptid (long lwp, long thread)
+aix_thread_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   return ptid_build (ptid_get_pid (inferior_ptid), 0, thread);
 }
index 6cbfc832430ef4ead09c6470551196ee9db282a5..dd44bdb6eedccc761656fb33c2b383f761b96f7e 100644 (file)
@@ -2005,7 +2005,7 @@ darwin_pid_to_exec_file (struct target_ops *self, int pid)
 }
 
 static ptid_t
-darwin_get_ada_task_ptid (long lwp, long thread)
+darwin_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   int i;
   darwin_thread_t *t;
index b9a1c68a19040aad42be3837f2b9c16243f900aa..e7cecc4ea3062cb890261a161155ae3a48f3652a 100644 (file)
@@ -687,12 +687,13 @@ dec_thread_new_objfile_observer (struct objfile *objfile)
 /* The "to_get_ada_task_ptid" method of the dec_thread_ops.  */
 
 static ptid_t
-dec_thread_get_ada_task_ptid (long lwp, long thread)
+dec_thread_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   int i;
   struct dec_thread_info *info;
 
-  debug ("dec_thread_get_ada_task_ptid (lwp=0x%lx, thread=0x%lx)",
+  debug ("dec_thread_get_ada_task_ptid (struct target_ops *self,
+  lwp=0x%lx, thread=0x%lx)",
          lwp, thread);
 
   for (i = 0; VEC_iterate (dec_thread_info_s, dec_thread_list, i, info);
index 5e64d8d64322a537ed4db3ee2119e21532c6277d..802dc85dd125dae3837a85230dc7094117948e77 100644 (file)
@@ -1314,7 +1314,7 @@ inf_ttrace_pid_to_str (struct target_ops *ops, ptid_t ptid)
 /* Implement the get_ada_task_ptid target_ops method.  */
 
 static ptid_t
-inf_ttrace_get_ada_task_ptid (long lwp, long thread)
+inf_ttrace_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
 }
index 9180464b9d0116b25dd153cc81b0d7080bbd8c04..cf7adc42bffb3a09c623338d98780142a56b5ac6 100644 (file)
@@ -1875,7 +1875,7 @@ thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
 /* Implement the to_get_ada_task_ptid target method for this target.  */
 
 static ptid_t
-thread_db_get_ada_task_ptid (long lwp, long thread)
+thread_db_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   struct thread_info *thread_info;
 
index cf548e763c5a9c134446bb1832d970024b389137..fdec52a8e563b3b6df1d9815805bfc5f10006cb7 100644 (file)
@@ -350,7 +350,7 @@ ravenscar_inferior_created (struct target_ops *target, int from_tty)
 }
 
 static ptid_t
-ravenscar_get_ada_task_ptid (long lwp, long thread)
+ravenscar_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   return ptid_build (ptid_get_pid (base_ptid), 0, thread);
 }
index d2a4d52aa8a61206469c26966971c4245bb95cd8..2b499a391a97dea26e0ba29a8e5a0d822ae656ed 100644 (file)
@@ -2969,7 +2969,7 @@ remote_static_tracepoint_markers_by_strid (const char *strid)
 /* Implement the to_get_ada_task_ptid function for the remote targets.  */
 
 static ptid_t
-remote_get_ada_task_ptid (long lwp, long thread)
+remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
 }
index 67e082541bbdde42a83966e8dba1d60eff3948c5..56d023bc6a77a930da9b3772c0f6faac01a59647 100644 (file)
@@ -1190,7 +1190,7 @@ thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
 }
 
 static ptid_t
-sol_get_ada_task_ptid (long lwp, long thread)
+sol_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   struct thread_info *thread_info =
     iterate_over_threads (thread_db_find_thread_from_tid, &thread);
index 4d67bc37ffb2cbe829989d08b64e42386f585d77..0a51ccd6c558c6795dce39f4f4386c93e1c649d7 100644 (file)
@@ -537,7 +537,7 @@ default_terminal_info (struct target_ops *self, const char *args, int from_tty)
    inferior_ptid.  */
 
 static ptid_t
-default_get_ada_task_ptid (long lwp, long tid)
+default_get_ada_task_ptid (struct target_ops *self, long lwp, long tid)
 {
   return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
 }
@@ -837,7 +837,7 @@ update_current_target (void)
            default_thread_architecture);
   current_target.to_read_description = NULL;
   de_fault (to_get_ada_task_ptid,
-            (ptid_t (*) (long, long))
+            (ptid_t (*) (struct target_ops *, long, long))
             default_get_ada_task_ptid);
   de_fault (to_supports_multi_process,
            (int (*) (void))
index 526ba521d5d88acb7c1d5ddd1103df638218e39c..723868e60ac2a5cb7ca98ae35a5a62b978869d75 100644 (file)
@@ -641,7 +641,8 @@ struct target_ops
        based on LWP and THREAD.  These values are extracted from the
        task Private_Data section of the Ada Task Control Block, and
        their interpretation depends on the target.  */
-    ptid_t (*to_get_ada_task_ptid) (long lwp, long thread);
+    ptid_t (*to_get_ada_task_ptid) (struct target_ops *,
+                                   long lwp, long thread);
 
     /* Read one auxv entry from *READPTR, not reading locations >= ENDPTR.
        Return 0 if *READPTR is already at the end of the buffer.
@@ -1702,7 +1703,7 @@ extern int target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask);
 extern const struct target_desc *target_read_description (struct target_ops *);
 
 #define target_get_ada_task_ptid(lwp, tid) \
-     (*current_target.to_get_ada_task_ptid) (lwp,tid)
+     (*current_target.to_get_ada_task_ptid) (&current_target, lwp,tid)
 
 /* Utility implementation of searching memory.  */
 extern int simple_search_memory (struct target_ops* ops,
index bc00c43c0020ac2dcc4bc1a8e2b00ca06725610b..164b53f6fee0545d8adb5a3c43b2dfba3bf77827 100644 (file)
@@ -2585,7 +2585,7 @@ windows_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
 }
 
 static ptid_t
-windows_get_ada_task_ptid (long lwp, long thread)
+windows_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
 {
   return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
 }