* 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 e97186da92dc2b66bb8230c115c40be058a364c8..2b649fe1b1792f480e568c7fae16f4db755b0f2e 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 605945c7663565011475a6e38bba22cbfb9cb817..f5366c61ace255dfdf7f8423505760dd534bbc47 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 9e6ef54959853717a6500e4e2109c5c44ff68a5f..b2786bbf7435720839bc0935ddbd917b6aa2afb5 100644 (file)
@@ -1299,6 +1299,7 @@ static void
 hms_mourn ()
 {
   hms_clear_breakpoints ();
+  unpush_target (&hms_ops);
   generic_mourn_inferior ();
 }
 
index 5407506a6666c83a6d057d04b590e5cafe583871..5c58d24d533260d12db08753c902218c9e1bd080 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 91b98ad99afbcef407610a6d24347c9fc80cf896..1dda7afb2100e4e3d407d4a710131d5726e2bdb4 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 fc75504555e5a4f1b3794ef4b394f3c5882752f1..833aa206760cb505b2e43611abcf7e2694785175 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 744bc46b79b5cf627551b1babb19ec5d35fe8706..16fc73a68d06e43234676250141672f133d9195b 100644 (file)
@@ -305,6 +305,7 @@ static void
 sim_mourn ()
 {
   sim_clear_breakpoints ();
+  unpush_target (&sim_ops);
   generic_mourn_inferior ();
 }