* 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)
* Remote targets (mourn): Call unpush_target.
* config/sparc/xm-sun4os4.h: Declare free() to return int.
Remove twisted use of PARAMS.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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