summaryrefslogtreecommitdiff
path: root/gdb/sol-thread.c
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2008-07-09 22:49:56 +0000
committerPedro Alves <pedro@codesourcery.com>2008-07-09 22:49:56 +0000
commit92a317921f32a4d8e78564f74148855b279268e4 (patch)
tree042fccedd2ad4c07390e58f63bccd490b3194b8a /gdb/sol-thread.c
parentd3003b46346126387a2682f686be592ce6aea9aa (diff)
downloadgdb-92a317921f32a4d8e78564f74148855b279268e4.tar.gz
Adjust all targets to new target_stop interface.
* gnu-nat.c (gnu_stop): Add ptid argument. * go32-nat.c (go32_stop): Add ptid argument. (go32_create_inferior): Pass inferior_ptid to go32_stop. * hpux-thread.c (hpux_thread_stop): Add ptid argument. * monitor.c (monitor_stop): Add ptid argument. (monitor_open): Pass inferior_ptid to monitor_stop. (monitor_interrupt): Pass inferior_ptid to target_stop. (monitor_stop): Add ptid argument. * nto-procfs.c (nto_interrupt): Pass inferior_ptid to target_stop. (procfs_create_inferior): Add ptid argument. * procfs.c (procfs_stop): Add ptid argument. * remote-m32r-sdi.c (m32r_stop): Add ptid argument. * remote-sim.c (gdbsim_stop): Add ptid argument. * sol-thread.c (sol_thread_stop): Add ptid argument. * win32-nat.c (win32_stop): Add ptid argument.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r--gdb/sol-thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c
index bf31fa0194c..ab7ec5d2244 100644
--- a/gdb/sol-thread.c
+++ b/gdb/sol-thread.c
@@ -881,9 +881,9 @@ sol_thread_alive (ptid_t ptid)
}
static void
-sol_thread_stop (void)
+sol_thread_stop (ptid_t ptid)
{
- procfs_ops.to_stop ();
+ procfs_ops.to_stop (ptid);
}
/* These routines implement the lower half of the thread_db interface,