mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-29 13:04:46 +08:00
* Remote targets (mourn): Call unpush_target.
This commit is contained in:
parent
e82980e4ec
commit
71607f9d62
@ -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.
|
||||
|
||||
|
@ -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 */
|
||||
|
@ -1299,6 +1299,7 @@ static void
|
||||
hms_mourn ()
|
||||
{
|
||||
hms_clear_breakpoints ();
|
||||
unpush_target (&hms_ops);
|
||||
generic_mourn_inferior ();
|
||||
}
|
||||
|
||||
|
@ -1330,6 +1330,7 @@ mips_create_inferior (execfile, args, env)
|
||||
static void
|
||||
mips_mourn_inferior ()
|
||||
{
|
||||
unpush_target (&mips_ops);
|
||||
generic_mourn_inferior ();
|
||||
}
|
||||
|
||||
|
@ -885,6 +885,7 @@ void
|
||||
nindy_mourn_inferior ()
|
||||
{
|
||||
remove_breakpoints ();
|
||||
unpush_target (&nindy_ops);
|
||||
generic_mourn_inferior (); /* Do all the proper things now */
|
||||
}
|
||||
|
||||
|
@ -608,6 +608,7 @@ static void
|
||||
st2000_mourn_inferior ()
|
||||
{
|
||||
remove_breakpoints ();
|
||||
unpush_target (&st2000_ops);
|
||||
generic_mourn_inferior (); /* Do all the proper things now */
|
||||
}
|
||||
|
||||
|
@ -305,6 +305,7 @@ static void
|
||||
sim_mourn ()
|
||||
{
|
||||
sim_clear_breakpoints ();
|
||||
unpush_target (&sim_ops);
|
||||
generic_mourn_inferior ();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user