* corelow.c, exec.c, inftarg.c, m3-nat.c, op50-rom.c, procfs.c,
[deliverable/binutils-gdb.git] / gdb / main.c
index 2e0c00de86965912f78b4ba97a06094101b37a85..e7c8070a1cd408d2c2b9bd547ceb26f9eccf568a 100644 (file)
@@ -22,11 +22,14 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <setjmp.h>
 #include "top.h"
 #include "target.h"
+#include "inferior.h"
+#include "call-cmds.h"
 
 #include "getopt.h"
 
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <ctype.h>
 
 #include <string.h>
 /* R_OK lives in either unistd.h or sys/file.h.  */
@@ -49,6 +52,8 @@ static int top_level_val;
     ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (jmp_buf))) \
    , top_level_val)
 
+extern void gdb_init PARAMS ((void));
+
 int
 main (argc, argv)
      int argc;
@@ -169,6 +174,8 @@ main (argc, argv)
        {"tty", required_argument, 0, 't'},
        {"baud", required_argument, 0, 'b'},
        {"b", required_argument, 0, 'b'},
+       {"nw", no_argument, &no_windows, 1},
+       {"nowindows", no_argument, &no_windows, 1},
 /* Allow machine descriptions to add more options... */
 #ifdef ADDITIONAL_OPTIONS
        ADDITIONAL_OPTIONS
@@ -345,6 +352,7 @@ Options:\n\
   -b BAUDRATE        Set serial port baud rate used for remote debugging.\n\
   --mapped           Use mapped symbol files if supported on this system.\n\
   --readnow          Fully read symbol files on first access.\n\
+  --nw              Do not use a window interface.\n\
 ", gdb_stdout);
 /* start-sanitize-mpw */
 #endif /* MPW_C */
@@ -405,7 +413,7 @@ GDB manual (available as on-line info or a printed manual).\n", gdb_stdout);
       stat (gdbinit, &cwdbuf); /* We'll only need this if
                                       homedir was set.  */
     }
-  
+
   /* Now perform all the actions indicated by the arguments.  */
   if (cdarg != NULL)
     {
@@ -521,18 +529,13 @@ GDB manual (available as on-line info or a printed manual).\n", gdb_stdout);
       if (!SET_TOP_LEVEL ())
        {
          do_cleanups (ALL_CLEANUPS);           /* Do complete cleanup */
-/* start-sanitize-mpw */
-#ifdef MPW
-         /* If we're being a Mac application, go into a Mac-specific
-            event-handling loop instead.  We still want to be inside
-            the outer loop, because that will catch longjmps resulting
-            from some command executions. */
-         if (mac_app)
-           mac_command_loop ();
+         /* GUIs generally have their own command loop, mainloop, or whatever.
+            This is a good place to gain control because many error
+            conditions will end up here via longjmp(). */
+         if (command_loop_hook)
+           command_loop_hook ();
          else
-#endif /* MPW */
-/* end-sanitize-mpw */
-         command_loop ();
+           command_loop ();
           quit_command ((char *)0, instream == stdin);
        }
     }
@@ -549,7 +552,9 @@ proc_wait (pid, status)
      int pid;
      int *status;
 {
+#ifndef __GO32__
   return wait (status);
+#endif
 }
 
 void
@@ -563,5 +568,11 @@ fputs_unfiltered (linebuffer, stream)
      const char *linebuffer;
      FILE *stream;
 {
+  if (fputs_unfiltered_hook)
+    {
+      fputs_unfiltered_hook (linebuffer);
+      return;
+    }
+
   fputs (linebuffer, stream);
 }
This page took 0.024601 seconds and 4 git commands to generate.