]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2008-10-07 Hui Zhu <teawater@gmail.com>
authorHui Zhu <teawater@gmail.com>
Wed, 8 Oct 2008 06:20:51 +0000 (06:20 +0000)
committerHui Zhu <teawater@gmail.com>
Wed, 8 Oct 2008 06:20:51 +0000 (06:20 +0000)
* inflow.c (kill_command): Remove query special for
process record.

gdb/ChangeLog
gdb/inflow.c

index a0520701a12d788a4e28797b3865cad4e170a465..277d654b3ffe580ac3f3ce9f5f2b74e71728510a 100644 (file)
@@ -1,3 +1,8 @@
+2008-10-07  Hui Zhu  <teawater@gmail.com>
+
+       * inflow.c (kill_command): Remove query special for
+       process record.
+
 2008-10-07  Michael Snyder  <msnyder@vmware.com>
 
        * target.h (to_set_exec_direction, to_get_exec_direction): Remove.
index a3978197adbadfab60cc70cc49e8da4e90a1ae85..d9fa21c80487c79004afba45f24172500c3c86a9 100644 (file)
@@ -596,16 +596,8 @@ kill_command (char *arg, int from_tty)
 
   if (ptid_equal (inferior_ptid, null_ptid))
     error (_("The program is not being run."));
-  if (RECORD_IS_USED)
-    {
-      if (!query ("Stop the process record target and kill the program being debugged? "))
-        error (_("Not confirmed."));
-    }
-  else
-    {
-      if (!query ("Kill the program being debugged? "))
-        error (_("Not confirmed."));
-    }
+  if (!query ("Kill the program being debugged? "))
+    error (_("Not confirmed."));
   target_kill ();
 
   init_thread_list ();         /* Destroy thread info */