* Rename remote-es1800.c to remote-es.c
[deliverable/binutils-gdb.git] / gdb / inftarg.c
index 5717408f65a90529f0645717583b36bb3686b39a..e357c0ebbe62779b62b00dc4628587a2566e15f1 100644 (file)
@@ -94,8 +94,7 @@ child_wait (status)
 }
 
 
-/* Attach to process PID, then initialize for debugging it
-   and wait for the trace-trap that results from attaching.  */
+/* Attach to process PID, then initialize for debugging it.  */
 
 static void
 child_attach (args, from_tty)
@@ -105,8 +104,6 @@ child_attach (args, from_tty)
   char *exec_file;
   int pid;
 
-  dont_repeat();
-
   if (!args)
     error_no_arg ("process-id to attach");
 
@@ -118,14 +115,6 @@ child_attach (args, from_tty)
   if (pid == getpid())         /* Trying to masturbate? */
     error ("I refuse to debug myself!");
 
-  if (target_has_execution)
-    {
-      if (query ("A program is being debugged already.  Kill it? "))
-       target_kill ();
-      else
-       error ("Inferior not killed.");
-    }
-
   if (from_tty)
     {
       exec_file = (char *) get_exec_file (0);
@@ -141,18 +130,6 @@ child_attach (args, from_tty)
   attach (pid);
   inferior_pid = pid;
   push_target (&child_ops);
-
-  mark_breakpoints_out ();
-  target_terminal_init ();
-  clear_proceed_status ();
-  stop_soon_quietly = 1;
-  /*proceed (-1, 0, -2);*/
-  target_terminal_inferior ();
-  wait_for_inferior ();
-#ifdef SOLIB_ADD
-  SOLIB_ADD ((char *)0, from_tty, (struct target_ops *)0);
-#endif
-  normal_stop ();
 #endif  /* ATTACH_DETACH */
 }
 
This page took 0.022888 seconds and 4 git commands to generate.