* windows-nat.c (+windows_get_ada_task_ptid): New function.

(init_windows_ops): Set windows_ops.to_get_ada_task_ptid.
This commit is contained in:
Joel Brobecker 2009-04-01 16:35:41 +00:00
parent b8f9ee44f9
commit 1e2f1c5caa
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-04-01 Joel Brobecker <brobecker@adacore.com>
* windows-nat.c (+windows_get_ada_task_ptid): New function.
(init_windows_ops): Set windows_ops.to_get_ada_task_ptid.
2009-03-31 Daniel Jacobowitz <dan@codesourcery.com>
Keith Seitz <keiths@redhat.com>
Jan Kratochvil <jan.kratochvil@redhat.com>

View File

@ -2115,6 +2115,12 @@ windows_xfer_partial (struct target_ops *ops, enum target_object object,
}
}
static ptid_t
windows_get_ada_task_ptid (long lwp, long thread)
{
return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
}
static void
init_windows_ops (void)
{
@ -2156,6 +2162,7 @@ init_windows_ops (void)
windows_ops.to_has_registers = 1;
windows_ops.to_has_execution = 1;
windows_ops.to_pid_to_exec_file = windows_pid_to_exec_file;
windows_ops.to_get_ada_task_ptid = windows_get_ada_task_ptid;
i386_use_watchpoints (&windows_ops);
windows_ops.to_magic = OPS_MAGIC;