* Remote targets (mourn): Call unpush_target.

This commit is contained in:
Jim Kingdon 1993-04-28 15:33:20 +00:00
parent e82980e4ec
commit 71607f9d62
7 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,7 @@
Wed Apr 28 06:11:38 1993 Jim Kingdon (kingdon@cygnus.com) Wed Apr 28 06:11:38 1993 Jim Kingdon (kingdon@cygnus.com)
* Remote targets (mourn): Call unpush_target.
* config/sparc/xm-sun4os4.h: Declare free() to return int. * config/sparc/xm-sun4os4.h: Declare free() to return int.
Remove twisted use of PARAMS. Remove twisted use of PARAMS.

View file

@ -964,6 +964,7 @@ void
eb_mourn_inferior () eb_mourn_inferior ()
{ {
remove_breakpoints (); remove_breakpoints ();
unpush_target (&eb_ops);
generic_mourn_inferior (); /* Do all the proper things now */ generic_mourn_inferior (); /* Do all the proper things now */
} }
/* Define the target subroutine names */ /* Define the target subroutine names */

View file

@ -1299,6 +1299,7 @@ static void
hms_mourn () hms_mourn ()
{ {
hms_clear_breakpoints (); hms_clear_breakpoints ();
unpush_target (&hms_ops);
generic_mourn_inferior (); generic_mourn_inferior ();
} }

View file

@ -1330,6 +1330,7 @@ mips_create_inferior (execfile, args, env)
static void static void
mips_mourn_inferior () mips_mourn_inferior ()
{ {
unpush_target (&mips_ops);
generic_mourn_inferior (); generic_mourn_inferior ();
} }

View file

@ -885,6 +885,7 @@ void
nindy_mourn_inferior () nindy_mourn_inferior ()
{ {
remove_breakpoints (); remove_breakpoints ();
unpush_target (&nindy_ops);
generic_mourn_inferior (); /* Do all the proper things now */ generic_mourn_inferior (); /* Do all the proper things now */
} }

View file

@ -608,6 +608,7 @@ static void
st2000_mourn_inferior () st2000_mourn_inferior ()
{ {
remove_breakpoints (); remove_breakpoints ();
unpush_target (&st2000_ops);
generic_mourn_inferior (); /* Do all the proper things now */ generic_mourn_inferior (); /* Do all the proper things now */
} }

View file

@ -305,6 +305,7 @@ static void
sim_mourn () sim_mourn ()
{ {
sim_clear_breakpoints (); sim_clear_breakpoints ();
unpush_target (&sim_ops);
generic_mourn_inferior (); generic_mourn_inferior ();
} }