From 3a6e68ebef6ab5687ecac21cdfba472342ed8a16 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Tue, 17 Mar 2009 19:28:08 +0000 Subject: 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. --- gdb/go32-nat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/go32-nat.c') diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index ce8b6dc76f3..e1f793edf11 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -184,7 +184,7 @@ static int go32_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, struct target_ops *target); static void go32_files_info (struct target_ops *target); static void go32_stop (ptid_t); -static void go32_kill_inferior (void); +static void go32_kill_inferior (struct target_ops *ops); static void go32_create_inferior (struct target_ops *ops, char *exec_file, char *args, char **env, int from_tty); static void go32_mourn_inferior (struct target_ops *ops); @@ -580,7 +580,7 @@ go32_stop (ptid_t ptid) } static void -go32_kill_inferior (void) +go32_kill_inferior (struct target_ops *ops) { redir_cmdline_delete (&child_cmd); resume_signal = -1; @@ -608,7 +608,7 @@ go32_create_inferior (struct target_ops *ops, char *exec_file, if (prog_has_started) { go32_stop (inferior_ptid); - go32_kill_inferior (); + go32_kill_inferior (ops); } resume_signal = -1; resume_is_step = 0; @@ -691,7 +691,7 @@ go32_mourn_inferior (struct target_ops *ops) at all times, but it doesn't, probably under an assumption that the OS cleans up when the debuggee exits. */ i386_cleanup_dregs (); - go32_kill_inferior (); + go32_kill_inferior (ops); generic_mourn_inferior (); } -- cgit v1.2.1