diff options
author | Pedro Alves <palves@redhat.com> | 2008-07-09 22:49:56 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-07-09 22:49:56 +0000 |
commit | f9c72d524f7c66a7ae979f3aa4f7523e16fca2f6 (patch) | |
tree | 1fc7474b741e6307bc219d7f3577e4412ee71425 /gdb/hpux-thread.c | |
parent | 94cc34afe2c3d9377f1b9cfd481b5822a03c283f (diff) | |
download | gdb-f9c72d524f7c66a7ae979f3aa4f7523e16fca2f6.zip gdb-f9c72d524f7c66a7ae979f3aa4f7523e16fca2f6.tar.gz gdb-f9c72d524f7c66a7ae979f3aa4f7523e16fca2f6.tar.bz2 |
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/hpux-thread.c')
-rw-r--r-- | gdb/hpux-thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/hpux-thread.c b/gdb/hpux-thread.c index 4264eed..cd69e19 100644 --- a/gdb/hpux-thread.c +++ b/gdb/hpux-thread.c @@ -505,9 +505,9 @@ hpux_thread_alive (ptid_t ptid) } static void -hpux_thread_stop (void) +hpux_thread_stop (ptid_t ptid) { - deprecated_child_ops.to_stop (); + deprecated_child_ops.to_stop (ptid); } /* Convert a pid to printable form. */ |