* vms-tir.c: Add missing prototypes.
[deliverable/binutils-gdb.git] / gdb / main.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
b6ba6518
KB
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22#include "defs.h"
c906108c
SS
23#include "top.h"
24#include "target.h"
25#include "inferior.h"
1adeb98a
FN
26#include "symfile.h"
27#include "gdbcore.h"
c906108c
SS
28
29#include "getopt.h"
30
31#include <sys/types.h>
32#include "gdb_stat.h"
33#include <ctype.h>
34
35#include "gdb_string.h"
9e0b60a8 36#include "event-loop.h"
8b93c638 37#include "ui-out.h"
6457bd47 38
c906108c
SS
39/* If nonzero, display time usage both at startup and for each command. */
40
41int display_time;
42
43/* If nonzero, display space usage both at startup and for each command. */
44
45int display_space;
46
cd0fc7c3 47/* Whether this is the async version or not. The async version is
c5aa993b
JM
48 invoked on the command line with the -nw --async options. In this
49 version, the usual command_loop is substituted by and event loop which
50 processes UI events asynchronously. */
6426a772 51int event_loop_p = 1;
cd0fc7c3 52
fb40c209
AC
53#ifdef UI_OUT
54/* Has an interpreter been specified and if so, which. */
55char *interpreter_p;
56#endif
57
c906108c
SS
58/* Whether this is the command line version or not */
59int tui_version = 0;
60
61/* Whether xdb commands will be handled */
62int xdb_commands = 0;
63
64/* Whether dbx commands will be handled */
65int dbx_commands = 0;
66
d9fcf2fb
JM
67struct ui_file *gdb_stdout;
68struct ui_file *gdb_stderr;
69struct ui_file *gdb_stdlog;
70struct ui_file *gdb_stdtarg;
c906108c 71
2acceee2
JM
72/* Used to initialize error() - defined in utils.c */
73
74extern void error_init (void);
75
c906108c
SS
76/* Whether to enable writing into executable and core files */
77extern int write_files;
78
d9fcf2fb 79static void print_gdb_help (struct ui_file *);
c906108c
SS
80
81/* These two are used to set the external editor commands when gdb is farming
82 out files to be edited by another program. */
83
84extern int enable_external_editor;
c5aa993b 85extern char *external_editor_command;
c906108c 86
11cf8741
JM
87/* Call command_loop. If it happens to return, pass that through as a
88 non-zero return status. */
89
90static int
91captured_command_loop (void *data)
c906108c 92{
11cf8741
JM
93 if (command_loop_hook == NULL)
94 command_loop ();
95 else
96 command_loop_hook ();
97 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
98 would clean things up (restoring the cleanup chain) to the state
99 they were just prior to the call. Technically, this means that
e26cc349 100 the do_cleanups() below is redundant. Unfortunately, many FUNCs
11cf8741
JM
101 are not that well behaved. do_cleanups should either be replaced
102 with a do_cleanups call (to cover the problem) or an assertion
103 check to detect bad FUNCs code. */
104 do_cleanups (ALL_CLEANUPS);
105 /* If the command_loop returned, normally (rather than threw an
106 error) we try to quit. If the quit is aborted, catch_errors()
107 which called this catch the signal and restart the command
108 loop. */
109 quit_command (NULL, instream == stdin);
110 return 1;
111}
112
113struct captured_main_args
114 {
115 int argc;
116 char **argv;
117 };
118
119static int
120captured_main (void *data)
121{
122 struct captured_main_args *context = data;
123 int argc = context->argc;
124 char **argv = context->argv;
c906108c
SS
125 int count;
126 static int quiet = 0;
127 static int batch = 0;
128
129 /* Pointers to various arguments from command line. */
130 char *symarg = NULL;
131 char *execarg = NULL;
132 char *corearg = NULL;
133 char *cdarg = NULL;
134 char *ttyarg = NULL;
135
136 /* These are static so that we can take their address in an initializer. */
137 static int print_help;
138 static int print_version;
139
140 /* Pointers to all arguments of --command option. */
141 char **cmdarg;
142 /* Allocated size of cmdarg. */
143 int cmdsize;
144 /* Number of elements of cmdarg used. */
145 int ncmd;
146
147 /* Indices of all arguments of --directory option. */
148 char **dirarg;
149 /* Allocated size. */
150 int dirsize;
151 /* Number of elements used. */
152 int ndir;
c5aa993b 153
c906108c
SS
154 struct stat homebuf, cwdbuf;
155 char *homedir, *homeinit;
156
157 register int i;
158
159 long time_at_startup = get_run_time ();
160
c906108c
SS
161 START_PROGRESS (argv[0], 0);
162
163#ifdef MPW
164 /* Do all Mac-specific setup. */
165 mac_init ();
166#endif /* MPW */
167
168 /* This needs to happen before the first use of malloc. */
169 init_malloc ((PTR) NULL);
170
171#if defined (ALIGN_STACK_ON_STARTUP)
172 i = (int) &count & 0x3;
173 if (i != 0)
174 alloca (4 - i);
175#endif
176
c906108c
SS
177 cmdsize = 1;
178 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
179 ncmd = 0;
180 dirsize = 1;
181 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
182 ndir = 0;
183
184 quit_flag = 0;
185 line = (char *) xmalloc (linesize);
186 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
187 instream = stdin;
188
189 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
190 current_directory = gdb_dirbuf;
191
da59e081
JM
192 gdb_stdout = stdio_fileopen (stdout);
193 gdb_stderr = stdio_fileopen (stderr);
194 gdb_stdlog = gdb_stderr; /* for moment */
195 gdb_stdtarg = gdb_stderr; /* for moment */
c906108c 196
2acceee2
JM
197 /* initialize error() */
198 error_init ();
199
c906108c
SS
200 /* Parse arguments and options. */
201 {
202 int c;
203 /* When var field is 0, use flag field to record the equivalent
204 short option (or arbitrary numbers starting at 10 for those
205 with no equivalent). */
206 static struct option long_options[] =
c5aa993b 207 {
6426a772
JM
208 {"async", no_argument, &event_loop_p, 1},
209 {"noasync", no_argument, &event_loop_p, 0},
c906108c 210#if defined(TUI)
c5aa993b 211 {"tui", no_argument, &tui_version, 1},
c906108c 212#endif
c5aa993b
JM
213 {"xdb", no_argument, &xdb_commands, 1},
214 {"dbx", no_argument, &dbx_commands, 1},
215 {"readnow", no_argument, &readnow_symbol_files, 1},
216 {"r", no_argument, &readnow_symbol_files, 1},
217 {"mapped", no_argument, &mapped_symbol_files, 1},
218 {"m", no_argument, &mapped_symbol_files, 1},
219 {"quiet", no_argument, &quiet, 1},
220 {"q", no_argument, &quiet, 1},
221 {"silent", no_argument, &quiet, 1},
222 {"nx", no_argument, &inhibit_gdbinit, 1},
223 {"n", no_argument, &inhibit_gdbinit, 1},
224 {"batch", no_argument, &batch, 1},
225 {"epoch", no_argument, &epoch_interface, 1},
226
227 /* This is a synonym for "--annotate=1". --annotate is now preferred,
228 but keep this here for a long time because people will be running
229 emacses which use --fullname. */
230 {"fullname", no_argument, 0, 'f'},
231 {"f", no_argument, 0, 'f'},
232
233 {"annotate", required_argument, 0, 12},
234 {"help", no_argument, &print_help, 1},
235 {"se", required_argument, 0, 10},
236 {"symbols", required_argument, 0, 's'},
237 {"s", required_argument, 0, 's'},
238 {"exec", required_argument, 0, 'e'},
239 {"e", required_argument, 0, 'e'},
240 {"core", required_argument, 0, 'c'},
241 {"c", required_argument, 0, 'c'},
242 {"command", required_argument, 0, 'x'},
243 {"version", no_argument, &print_version, 1},
244 {"x", required_argument, 0, 'x'},
3fc11d3e
JM
245#ifdef GDBTK
246 {"tclcommand", required_argument, 0, 'z'},
247 {"enable-external-editor", no_argument, 0, 'y'},
248 {"editor-command", required_argument, 0, 'w'},
249#endif
fb40c209 250#ifdef UI_OUT
8b93c638
JM
251 {"ui", required_argument, 0, 'i'},
252 {"interpreter", required_argument, 0, 'i'},
253 {"i", required_argument, 0, 'i'},
fb40c209 254#endif
c5aa993b 255 {"directory", required_argument, 0, 'd'},
c4093a6a 256 {"d", required_argument, 0, 'd'},
c5aa993b
JM
257 {"cd", required_argument, 0, 11},
258 {"tty", required_argument, 0, 't'},
259 {"baud", required_argument, 0, 'b'},
260 {"b", required_argument, 0, 'b'},
261 {"nw", no_argument, &use_windows, 0},
262 {"nowindows", no_argument, &use_windows, 0},
263 {"w", no_argument, &use_windows, 1},
264 {"windows", no_argument, &use_windows, 1},
265 {"statistics", no_argument, 0, 13},
266 {"write", no_argument, &write_files, 1},
c906108c
SS
267/* Allow machine descriptions to add more options... */
268#ifdef ADDITIONAL_OPTIONS
c5aa993b 269 ADDITIONAL_OPTIONS
c906108c 270#endif
c5aa993b
JM
271 {0, no_argument, 0, 0}
272 };
c906108c
SS
273
274 while (1)
275 {
276 int option_index;
277
278 c = getopt_long_only (argc, argv, "",
279 long_options, &option_index);
280 if (c == EOF)
281 break;
282
283 /* Long option that takes an argument. */
284 if (c == 0 && long_options[option_index].flag == 0)
285 c = long_options[option_index].val;
286
287 switch (c)
288 {
289 case 0:
290 /* Long option that just sets a flag. */
291 break;
292 case 10:
293 symarg = optarg;
294 execarg = optarg;
295 break;
296 case 11:
297 cdarg = optarg;
298 break;
299 case 12:
300 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
301 annotation_level = atoi (optarg);
302 break;
303 case 13:
304 /* Enable the display of both time and space usage. */
305 display_time = 1;
306 display_space = 1;
307 break;
308 case 'f':
309 annotation_level = 1;
310/* We have probably been invoked from emacs. Disable window interface. */
311 use_windows = 0;
312 break;
313 case 's':
314 symarg = optarg;
315 break;
316 case 'e':
317 execarg = optarg;
318 break;
319 case 'c':
320 corearg = optarg;
321 break;
322 case 'x':
323 cmdarg[ncmd++] = optarg;
324 if (ncmd >= cmdsize)
325 {
326 cmdsize *= 2;
c5aa993b 327 cmdarg = (char **) xrealloc ((char *) cmdarg,
c906108c
SS
328 cmdsize * sizeof (*cmdarg));
329 }
330 break;
3fc11d3e
JM
331#ifdef GDBTK
332 case 'z':
333 {
a14ed312 334extern int gdbtk_test (char *);
3fc11d3e
JM
335 if (!gdbtk_test (optarg))
336 {
337 fprintf_unfiltered (gdb_stderr, "%s: unable to load tclcommand file \"%s\"",
338 argv[0], optarg);
339 exit (1);
340 }
341 break;
342 }
343 case 'y':
344 {
345 /*
346 * This enables the edit/button in the main window, even
347 * when IDE_ENABLED is set to false. In this case you must
348 * use --tclcommand to specify a tcl/script to be called,
349 * Tcl/Variable to store the edit/command is:
350 * external_editor
351 */
352 enable_external_editor = 1;
353 break;
354 }
355 case 'w':
356 {
357 /*
358 * if editor command is enabled, both flags are set
359 */
360 enable_external_editor = 1;
361 external_editor_command = xstrdup (optarg);
362 break;
363 }
364#endif /* GDBTK */
fb40c209
AC
365#ifdef UI_OUT
366 case 'i':
367 interpreter_p = optarg;
368 break;
369#endif
c906108c
SS
370 case 'd':
371 dirarg[ndir++] = optarg;
372 if (ndir >= dirsize)
373 {
374 dirsize *= 2;
c5aa993b 375 dirarg = (char **) xrealloc ((char *) dirarg,
c906108c
SS
376 dirsize * sizeof (*dirarg));
377 }
378 break;
379 case 't':
380 ttyarg = optarg;
381 break;
382 case 'q':
383 quiet = 1;
384 break;
385 case 'b':
386 {
387 int i;
388 char *p;
389
390 i = strtol (optarg, &p, 0);
391 if (i == 0 && p == optarg)
392
393 /* Don't use *_filtered or warning() (which relies on
c5aa993b 394 current_target) until after initialize_all_files(). */
c906108c
SS
395
396 fprintf_unfiltered
397 (gdb_stderr,
398 "warning: could not set baud rate to `%s'.\n", optarg);
399 else
400 baud_rate = i;
401 }
402 case 'l':
403 {
404 int i;
405 char *p;
406
407 i = strtol (optarg, &p, 0);
408 if (i == 0 && p == optarg)
409
410 /* Don't use *_filtered or warning() (which relies on
c5aa993b 411 current_target) until after initialize_all_files(). */
c906108c
SS
412
413 fprintf_unfiltered
414 (gdb_stderr,
c5aa993b 415 "warning: could not set timeout limit to `%s'.\n", optarg);
c906108c
SS
416 else
417 remote_timeout = i;
418 }
419 break;
420
421#ifdef ADDITIONAL_OPTION_CASES
c5aa993b 422 ADDITIONAL_OPTION_CASES
c906108c
SS
423#endif
424 case '?':
425 fprintf_unfiltered (gdb_stderr,
c5aa993b
JM
426 "Use `%s --help' for a complete list of options.\n",
427 argv[0]);
c906108c
SS
428 exit (1);
429 }
430 }
431
432 /* If --help or --version, disable window interface. */
433 if (print_help || print_version)
434 {
435 use_windows = 0;
436#ifdef TUI
437 /* Disable the TUI as well. */
438 tui_version = 0;
439#endif
440 }
441
442#ifdef TUI
443 /* An explicit --tui flag overrides the default UI, which is the
444 window system. */
445 if (tui_version)
446 use_windows = 0;
c5aa993b 447#endif
c906108c
SS
448
449 /* OK, that's all the options. The other arguments are filenames. */
450 count = 0;
451 for (; optind < argc; optind++)
452 switch (++count)
453 {
454 case 1:
455 symarg = argv[optind];
456 execarg = argv[optind];
457 break;
458 case 2:
1adeb98a 459 /* FIXME: The documentation says this can be a "ProcID". as well. */
c906108c
SS
460 corearg = argv[optind];
461 break;
462 case 3:
463 fprintf_unfiltered (gdb_stderr,
c5aa993b
JM
464 "Excess command line arguments ignored. (%s%s)\n",
465 argv[optind], (optind == argc - 1) ? "" : " ...");
c906108c
SS
466 break;
467 }
468 if (batch)
469 quiet = 1;
470 }
471
0f71a2f6
JM
472 /* Initialize all files. Give the interpreter a chance to take
473 control of the console via the init_ui_hook()) */
c906108c
SS
474 gdb_init (argv[0]);
475
476 /* Do these (and anything which might call wrap_here or *_filtered)
477 after initialize_all_files. */
478 if (print_version)
479 {
480 print_gdb_version (gdb_stdout);
481 wrap_here ("");
482 printf_filtered ("\n");
483 exit (0);
484 }
485
486 if (print_help)
487 {
488 print_gdb_help (gdb_stdout);
489 fputs_unfiltered ("\n", gdb_stdout);
490 exit (0);
491 }
492
493 if (!quiet)
494 {
495 /* Print all the junk at the top, with trailing "..." if we are about
c5aa993b 496 to read a symbol file (possibly slowly). */
c906108c
SS
497 print_gdb_version (gdb_stdout);
498 if (symarg)
499 printf_filtered ("..");
c5aa993b
JM
500 wrap_here ("");
501 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
c906108c
SS
502 }
503
504 error_pre_print = "\n\n";
505 quit_pre_print = error_pre_print;
506
507 /* We may get more than one warning, don't double space all of them... */
508 warning_pre_print = "\nwarning: ";
509
510 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
511 *before* all the command line arguments are processed; it sets
512 global parameters, which are independent of what file you are
513 debugging or what directory you are in. */
c5aa993b 514 homedir = getenv ("HOME");
c906108c
SS
515 if (homedir)
516 {
517 homeinit = (char *) alloca (strlen (homedir) +
518 strlen (gdbinit) + 10);
519 strcpy (homeinit, homedir);
520 strcat (homeinit, "/");
521 strcat (homeinit, gdbinit);
522
523 if (!inhibit_gdbinit)
524 {
11cf8741 525 catch_command_errors (source_command, homeinit, 0, RETURN_MASK_ALL);
c906108c 526 }
c906108c
SS
527
528 /* Do stats; no need to do them elsewhere since we'll only
c5aa993b
JM
529 need them if homedir is set. Make sure that they are
530 zero in case one of them fails (this guarantees that they
531 won't match if either exists). */
532
c906108c
SS
533 memset (&homebuf, 0, sizeof (struct stat));
534 memset (&cwdbuf, 0, sizeof (struct stat));
c5aa993b 535
c906108c 536 stat (homeinit, &homebuf);
c5aa993b
JM
537 stat (gdbinit, &cwdbuf); /* We'll only need this if
538 homedir was set. */
c906108c
SS
539 }
540
541 /* Now perform all the actions indicated by the arguments. */
542 if (cdarg != NULL)
543 {
11cf8741 544 catch_command_errors (cd_command, cdarg, 0, RETURN_MASK_ALL);
c906108c 545 }
c906108c
SS
546
547 for (i = 0; i < ndir; i++)
11cf8741 548 catch_command_errors (directory_command, dirarg[i], 0, RETURN_MASK_ALL);
b8c9b27d 549 xfree (dirarg);
c906108c
SS
550
551 if (execarg != NULL
552 && symarg != NULL
553 && STREQ (execarg, symarg))
554 {
11cf8741
JM
555 /* The exec file and the symbol-file are the same. If we can't
556 open it, better only print one error message.
557 catch_command_errors returns non-zero on success! */
1adeb98a
FN
558 if (catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL))
559 catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
c906108c
SS
560 }
561 else
562 {
563 if (execarg != NULL)
1adeb98a 564 catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL);
c906108c 565 if (symarg != NULL)
1adeb98a 566 catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
c906108c 567 }
c906108c
SS
568
569 /* After the symbol file has been read, print a newline to get us
570 beyond the copyright line... But errors should still set off
571 the error message with a (single) blank line. */
572 if (!quiet)
573 printf_filtered ("\n");
574 error_pre_print = "\n";
575 quit_pre_print = error_pre_print;
576 warning_pre_print = "\nwarning: ";
577
578 if (corearg != NULL)
579 {
11cf8741
JM
580 if (catch_command_errors (core_file_command, corearg, !batch, RETURN_MASK_ALL) == 0)
581 {
582 /* See if the core file is really a PID. */
583 if (isdigit (corearg[0]))
584 catch_command_errors (attach_command, corearg, !batch, RETURN_MASK_ALL);
585 }
c906108c 586 }
c906108c
SS
587
588 if (ttyarg != NULL)
11cf8741 589 catch_command_errors (tty_command, ttyarg, !batch, RETURN_MASK_ALL);
c906108c
SS
590
591#ifdef ADDITIONAL_OPTION_HANDLER
592 ADDITIONAL_OPTION_HANDLER;
593#endif
594
595 /* Error messages should no longer be distinguished with extra output. */
596 error_pre_print = NULL;
597 quit_pre_print = NULL;
598 warning_pre_print = "warning: ";
599
600 /* Read the .gdbinit file in the current directory, *if* it isn't
601 the same as the $HOME/.gdbinit file (it should exist, also). */
c5aa993b 602
c906108c
SS
603 if (!homedir
604 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
605 if (!inhibit_gdbinit)
606 {
11cf8741 607 catch_command_errors (source_command, gdbinit, 0, RETURN_MASK_ALL);
c906108c 608 }
c906108c
SS
609
610 for (i = 0; i < ncmd; i++)
611 {
11cf8741
JM
612#if 0
613 /* NOTE: cagney/1999-11-03: SET_TOP_LEVEL() was a macro that
614 expanded into a call to setjmp(). */
615 if (!SET_TOP_LEVEL ()) /* NB: This is #if 0'd out */
c906108c 616 {
b83266a0
SS
617 /* NOTE: I am commenting this out, because it is not clear
618 where this feature is used. It is very old and
c5aa993b 619 undocumented. ezannoni: 1999-05-04 */
b83266a0 620#if 0
c906108c
SS
621 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
622 read_command_file (stdin);
623 else
b83266a0 624#endif
c906108c
SS
625 source_command (cmdarg[i], !batch);
626 do_cleanups (ALL_CLEANUPS);
627 }
11cf8741
JM
628#endif
629 catch_command_errors (source_command, cmdarg[i], !batch, RETURN_MASK_ALL);
c906108c 630 }
b8c9b27d 631 xfree (cmdarg);
c906108c
SS
632
633 /* Read in the old history after all the command files have been read. */
c5aa993b 634 init_history ();
c906108c
SS
635
636 if (batch)
637 {
638 /* We have hit the end of the batch file. */
639 exit (0);
640 }
641
642 /* Do any host- or target-specific hacks. This is used for i960 targets
643 to force the user to set a nindy target and spec its parameters. */
644
645#ifdef BEFORE_MAIN_LOOP_HOOK
646 BEFORE_MAIN_LOOP_HOOK;
647#endif
648
649 END_PROGRESS (argv[0]);
650
651 /* Show time and/or space usage. */
652
653 if (display_time)
654 {
655 long init_time = get_run_time () - time_at_startup;
656
657 printf_unfiltered ("Startup time: %ld.%06ld\n",
658 init_time / 1000000, init_time % 1000000);
659 }
660
661 if (display_space)
662 {
663#ifdef HAVE_SBRK
664 extern char **environ;
665 char *lim = (char *) sbrk (0);
666
667 printf_unfiltered ("Startup size: data size %ld\n",
668 (long) (lim - (char *) &environ));
669#endif
670 }
671
11cf8741
JM
672#if 0
673 /* FIXME: cagney/1999-11-06: The original main loop was like: */
c906108c
SS
674 while (1)
675 {
676 if (!SET_TOP_LEVEL ())
677 {
c5aa993b 678 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
c906108c
SS
679 /* GUIs generally have their own command loop, mainloop, or whatever.
680 This is a good place to gain control because many error
681 conditions will end up here via longjmp(). */
682 if (command_loop_hook)
683 command_loop_hook ();
684 else
685 command_loop ();
c5aa993b 686 quit_command ((char *) 0, instream == stdin);
c906108c
SS
687 }
688 }
11cf8741
JM
689 /* NOTE: If the command_loop() returned normally, the loop would
690 attempt to exit by calling the function quit_command(). That
691 function would either call exit() or throw an error returning
692 control to SET_TOP_LEVEL. */
693 /* NOTE: The function do_cleanups() was called once each time round
694 the loop. The usefulness of the call isn't clear. If an error
695 was thrown, everything would have already been cleaned up. If
696 command_loop() returned normally and quit_command() was called,
697 either exit() or error() (again cleaning up) would be called. */
698#endif
699 /* NOTE: cagney/1999-11-07: There is probably no reason for not
700 moving this loop and the code found in captured_command_loop()
701 into the command_loop() proper. The main thing holding back that
702 change - SET_TOP_LEVEL() - has been eliminated. */
703 while (1)
704 {
705 catch_errors (captured_command_loop, 0, "", RETURN_MASK_ALL);
706 }
11cf8741
JM
707 /* No exit -- exit is through quit_command. */
708}
c906108c 709
11cf8741
JM
710int
711main (int argc, char **argv)
712{
11cf8741
JM
713 struct captured_main_args args;
714 args.argc = argc;
715 args.argv = argv;
716 catch_errors (captured_main, &args, "", RETURN_MASK_ALL);
717 return 0;
c906108c
SS
718}
719
11cf8741 720
c906108c
SS
721/* Don't use *_filtered for printing help. We don't want to prompt
722 for continue no matter how small the screen or how much we're going
723 to print. */
724
725static void
d9fcf2fb 726print_gdb_help (struct ui_file *stream)
c906108c 727{
c5aa993b 728 fputs_unfiltered ("\
c906108c
SS
729This is the GNU debugger. Usage:\n\n\
730 gdb [options] [executable-file [core-file or process-id]]\n\n\
731Options:\n\n\
0f71a2f6 732", stream);
c5aa993b 733 fputs_unfiltered ("\
0f71a2f6 734 --[no]async Enable (disable) asynchronous version of CLI\n\
c906108c 735", stream);
c5aa993b 736 fputs_unfiltered ("\
c906108c
SS
737 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
738 --batch Exit after processing options.\n\
739 --cd=DIR Change current directory to DIR.\n\
740 --command=FILE Execute GDB commands from FILE.\n\
741 --core=COREFILE Analyze the core dump COREFILE.\n\
742", stream);
c5aa993b 743 fputs_unfiltered ("\
c906108c
SS
744 --dbx DBX compatibility mode.\n\
745 --directory=DIR Search for source files in DIR.\n\
746 --epoch Output information used by epoch emacs-GDB interface.\n\
747 --exec=EXECFILE Use EXECFILE as the executable.\n\
748 --fullname Output information used by emacs-GDB interface.\n\
749 --help Print this message.\n\
8b93c638
JM
750", stream);
751 fputs_unfiltered ("\
752 --interpreter=INTERP\n\
753 Select a specific interpreter / user interface\n\
c906108c 754", stream);
c5aa993b 755 fputs_unfiltered ("\
c906108c
SS
756 --mapped Use mapped symbol files if supported on this system.\n\
757 --nw Do not use a window interface.\n\
96baa820
JM
758 --nx Do not read ", stream);
759 fputs_unfiltered (gdbinit, stream);
760 fputs_unfiltered (" file.\n\
c906108c
SS
761 --quiet Do not print version number on startup.\n\
762 --readnow Fully read symbol files on first access.\n\
763", stream);
c5aa993b 764 fputs_unfiltered ("\
c906108c
SS
765 --se=FILE Use FILE as symbol file and executable file.\n\
766 --symbols=SYMFILE Read symbols from SYMFILE.\n\
767 --tty=TTY Use TTY for input/output by the program being debugged.\n\
768", stream);
769#if defined(TUI)
c5aa993b 770 fputs_unfiltered ("\
c906108c
SS
771 --tui Use a terminal user interface.\n\
772", stream);
773#endif
c5aa993b 774 fputs_unfiltered ("\
c906108c
SS
775 --version Print version information and then exit.\n\
776 -w Use a window interface.\n\
777 --write Set writing into executable and core files.\n\
778 --xdb XDB compatibility mode.\n\
779", stream);
780#ifdef ADDITIONAL_OPTION_HELP
c5aa993b 781 fputs_unfiltered (ADDITIONAL_OPTION_HELP, stream);
c906108c 782#endif
c5aa993b 783 fputs_unfiltered ("\n\
c906108c
SS
784For more information, type \"help\" from within GDB, or consult the\n\
785GDB manual (available as on-line info or a printed manual).\n\
2df3850c 786Report bugs to \"bug-gdb@gnu.org\".\
c906108c
SS
787", stream);
788}
This page took 0.151703 seconds and 4 git commands to generate.