* Remote targets (mourn): Call unpush_target.
authorJim Kingdon <jkingdon@engr.sgi.com>
Wed, 28 Apr 1993 15:33:20 +0000 (15:33 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Wed, 28 Apr 1993 15:33:20 +0000 (15:33 +0000)
gdb/ChangeLog
gdb/remote-eb.c
gdb/remote-hms.c
gdb/remote-mips.c
gdb/remote-nindy.c
gdb/remote-st2000.c
gdb/remote-z8k.c

index e97186d..2b649fe 100644 (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.
 
index 605945c..f5366c6 100644 (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 */
index 9e6ef54..b2786bb 100644 (file)
@@ -1299,6 +1299,7 @@ static void
 hms_mourn ()
 {
   hms_clear_breakpoints ();
+  unpush_target (&hms_ops);
   generic_mourn_inferior ();
 }
 
index 5407506..5c58d24 100644 (file)
@@ -1330,6 +1330,7 @@ mips_create_inferior (execfile, args, env)
 static void
 mips_mourn_inferior ()
 {
+  unpush_target (&mips_ops);
   generic_mourn_inferior ();
 }
 \f
index 91b98ad..1dda7af 100644 (file)
@@ -885,6 +885,7 @@ void
 nindy_mourn_inferior ()
 {
   remove_breakpoints ();
+  unpush_target (&nindy_ops);
   generic_mourn_inferior ();   /* Do all the proper things now */
 }
 \f
index fc75504..833aa20 100644 (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 */
 }
 
index 744bc46..16fc73a 100644 (file)
@@ -305,6 +305,7 @@ static void
 sim_mourn ()
 {
   sim_clear_breakpoints ();
+  unpush_target (&sim_ops);
   generic_mourn_inferior ();
 }