diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-03-17 19:28:09 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-03-17 19:28:09 +0000 |
commit | 7d85a9c0e3639345cb6d19c139ccb9da5095fc76 (patch) | |
tree | 72a4cba16ffa78f6e727bde589b242829e4facab /gdb/target.h | |
parent | 14064aa202f80cd07434295c44268f44944859aa (diff) | |
download | gdb-7d85a9c0e3639345cb6d19c139ccb9da5095fc76.zip gdb-7d85a9c0e3639345cb6d19c139ccb9da5095fc76.tar.gz gdb-7d85a9c0e3639345cb6d19c139ccb9da5095fc76.tar.bz2 |
Add a target_ops parameter to the to_kill method in struct target_ops.
* target.h (struct target_ops): Add a "target_ops *" parameter to
method to_kill.
(target_kill): Remove macro. Add declaration.
* target.c (debug_to_kill): Delete, no longer necessary.
(target_kill): New function.
(update_current_target): Stop inheriting the to_kill method.
Do not de_fault it to no_process either.
(setup_target_debug): Do not set current_target.to_kill.
* gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
accordingly.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/target.h b/gdb/target.h index 7f4cd8f..e7f087b 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -378,7 +378,7 @@ struct target_ops void (*to_terminal_ours) (void); void (*to_terminal_save_ours) (void); void (*to_terminal_info) (char *, int); - void (*to_kill) (void); + void (*to_kill) (struct target_ops *); void (*to_load) (char *, int); int (*to_lookup_symbol) (char *, CORE_ADDR *); void (*to_create_inferior) (struct target_ops *, @@ -790,8 +790,7 @@ extern void print_section_info (struct target_ops *, bfd *); /* Kill the inferior process. Make it go away. */ -#define target_kill() \ - (*current_target.to_kill) () +extern void target_kill (void); /* Load an executable file into the target process. This is expected to not only bring new code into the target process, but also to |