*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / top.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
5 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
23
24 #include "defs.h"
25 #include "gdbcmd.h"
26 #include "call-cmds.h"
27 #include "cli/cli-cmds.h"
28 #include "cli/cli-script.h"
29 #include "cli/cli-setshow.h"
30 #include "cli/cli-decode.h"
31 #include "symtab.h"
32 #include "inferior.h"
33 #include "exceptions.h"
34 #include <signal.h>
35 #include "target.h"
36 #include "breakpoint.h"
37 #include "gdbtypes.h"
38 #include "expression.h"
39 #include "value.h"
40 #include "language.h"
41 #include "terminal.h" /* For job_control. */
42 #include "annotate.h"
43 #include "completer.h"
44 #include "top.h"
45 #include "version.h"
46 #include "serial.h"
47 #include "doublest.h"
48 #include "gdb_assert.h"
49 #include "main.h"
50
51 /* readline include files */
52 #include "readline/readline.h"
53 #include "readline/history.h"
54
55 /* readline defines this. */
56 #undef savestring
57
58 #include <sys/types.h>
59
60 #include "event-top.h"
61 #include "gdb_string.h"
62 #include "gdb_stat.h"
63 #include <ctype.h>
64 #include "ui-out.h"
65 #include "cli-out.h"
66
67 /* Default command line prompt. This is overriden in some configs. */
68
69 #ifndef DEFAULT_PROMPT
70 #define DEFAULT_PROMPT "(gdb) "
71 #endif
72
73 /* Initialization file name for gdb. This is overridden in some configs. */
74
75 #ifndef PATH_MAX
76 # ifdef FILENAME_MAX
77 # define PATH_MAX FILENAME_MAX
78 # else
79 # define PATH_MAX 512
80 # endif
81 #endif
82
83 #ifndef GDBINIT_FILENAME
84 #define GDBINIT_FILENAME ".gdbinit"
85 #endif
86 char gdbinit[PATH_MAX + 1] = GDBINIT_FILENAME;
87
88 int inhibit_gdbinit = 0;
89
90 /* If nonzero, and GDB has been configured to be able to use windows,
91 attempt to open them upon startup. */
92
93 int use_windows = 0;
94
95 extern char lang_frame_mismatch_warn[]; /* language.c */
96
97 /* Flag for whether we want all the "from_tty" gubbish printed. */
98
99 int caution = 1; /* Default is yes, sigh. */
100 static void
101 show_caution (struct ui_file *file, int from_tty,
102 struct cmd_list_element *c, const char *value)
103 {
104 fprintf_filtered (file, _("\
105 Whether to confirm potentially dangerous operations is %s.\n"),
106 value);
107 }
108
109 /* stdio stream that command input is being read from. Set to stdin normally.
110 Set by source_command to the file we are sourcing. Set to NULL if we are
111 executing a user-defined command or interacting via a GUI. */
112
113 FILE *instream;
114
115 /* Flag to indicate whether a user defined command is currently running. */
116
117 int in_user_command;
118
119 /* Current working directory. */
120
121 char *current_directory;
122
123 /* The directory name is actually stored here (usually). */
124 char gdb_dirbuf[1024];
125
126 /* Function to call before reading a command, if nonzero.
127 The function receives two args: an input stream,
128 and a prompt string. */
129
130 void (*window_hook) (FILE *, char *);
131
132 int epoch_interface;
133 int xgdb_verbose;
134
135 /* gdb prints this when reading a command interactively */
136 static char *gdb_prompt_string; /* the global prompt string */
137
138 /* Buffer used for reading command lines, and the size
139 allocated for it so far. */
140
141 char *line;
142 int linesize = 100;
143
144 /* Nonzero if the current command is modified by "server ". This
145 affects things like recording into the command history, commands
146 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
147 whatever) can issue its own commands and also send along commands
148 from the user, and have the user not notice that the user interface
149 is issuing commands too. */
150 int server_command;
151
152 /* Baud rate specified for talking to serial target systems. Default
153 is left as -1, so targets can choose their own defaults. */
154 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
155 or (unsigned int)-1. This is a Bad User Interface. */
156
157 int baud_rate = -1;
158
159 /* Timeout limit for response from target. */
160
161 /* The default value has been changed many times over the years. It
162 was originally 5 seconds. But that was thought to be a long time
163 to sit and wait, so it was changed to 2 seconds. That was thought
164 to be plenty unless the connection was going through some terminal
165 server or multiplexer or other form of hairy serial connection.
166
167 In mid-1996, remote_timeout was moved from remote.c to top.c and
168 it began being used in other remote-* targets. It appears that the
169 default was changed to 20 seconds at that time, perhaps because the
170 Renesas E7000 ICE didn't always respond in a timely manner.
171
172 But if 5 seconds is a long time to sit and wait for retransmissions,
173 20 seconds is far worse. This demonstrates the difficulty of using
174 a single variable for all protocol timeouts.
175
176 As remote.c is used much more than remote-e7000.c, it was changed
177 back to 2 seconds in 1999. */
178
179 int remote_timeout = 2;
180
181 /* Non-zero tells remote* modules to output debugging info. */
182
183 int remote_debug = 0;
184
185 /* Non-zero means the target is running. Note: this is different from
186 saying that there is an active target and we are stopped at a
187 breakpoint, for instance. This is a real indicator whether the
188 target is off and running, which gdb is doing something else. */
189 int target_executing = 0;
190
191 /* Sbrk location on entry to main. Used for statistics only. */
192 #ifdef HAVE_SBRK
193 char *lim_at_start;
194 #endif
195
196 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
197
198 #ifndef STOP_SIGNAL
199 #ifdef SIGTSTP
200 #define STOP_SIGNAL SIGTSTP
201 static void stop_sig (int);
202 #endif
203 #endif
204
205 /* Hooks for alternate command interfaces. */
206
207 /* Called after most modules have been initialized, but before taking users
208 command file.
209
210 If the UI fails to initialize and it wants GDB to continue
211 using the default UI, then it should clear this hook before returning. */
212
213 void (*deprecated_init_ui_hook) (char *argv0);
214
215 /* This hook is called from within gdb's many mini-event loops which could
216 steal control from a real user interface's event loop. It returns
217 non-zero if the user is requesting a detach, zero otherwise. */
218
219 int (*deprecated_ui_loop_hook) (int);
220
221 /* Called instead of command_loop at top level. Can be invoked via
222 throw_exception(). */
223
224 void (*deprecated_command_loop_hook) (void);
225
226
227 /* Called from print_frame_info to list the line we stopped in. */
228
229 void (*deprecated_print_frame_info_listing_hook) (struct symtab * s, int line,
230 int stopline, int noerror);
231 /* Replaces most of query. */
232
233 int (*deprecated_query_hook) (const char *, va_list);
234
235 /* Replaces most of warning. */
236
237 void (*deprecated_warning_hook) (const char *, va_list);
238
239 /* These three functions support getting lines of text from the user.
240 They are used in sequence. First deprecated_readline_begin_hook is
241 called with a text string that might be (for example) a message for
242 the user to type in a sequence of commands to be executed at a
243 breakpoint. If this function calls back to a GUI, it might take
244 this opportunity to pop up a text interaction window with this
245 message. Next, deprecated_readline_hook is called with a prompt
246 that is emitted prior to collecting the user input. It can be
247 called multiple times. Finally, deprecated_readline_end_hook is
248 called to notify the GUI that we are done with the interaction
249 window and it can close it. */
250
251 void (*deprecated_readline_begin_hook) (char *, ...);
252 char *(*deprecated_readline_hook) (char *);
253 void (*deprecated_readline_end_hook) (void);
254
255 /* Called as appropriate to notify the interface of the specified breakpoint
256 conditions. */
257
258 void (*deprecated_create_breakpoint_hook) (struct breakpoint * bpt);
259 void (*deprecated_delete_breakpoint_hook) (struct breakpoint * bpt);
260 void (*deprecated_modify_breakpoint_hook) (struct breakpoint * bpt);
261
262 /* Called as appropriate to notify the interface that we have attached
263 to or detached from an already running process. */
264
265 void (*deprecated_attach_hook) (void);
266 void (*deprecated_detach_hook) (void);
267
268 /* Called during long calculations to allow GUI to repair window damage, and to
269 check for stop buttons, etc... */
270
271 void (*deprecated_interactive_hook) (void);
272
273 /* Called when the registers have changed, as a hint to a GUI
274 to minimize window update. */
275
276 void (*deprecated_registers_changed_hook) (void);
277
278 /* Tell the GUI someone changed the register REGNO. -1 means
279 that the caller does not know which register changed or
280 that several registers have changed (see value_assign). */
281 void (*deprecated_register_changed_hook) (int regno);
282
283 /* Tell the GUI someone changed LEN bytes of memory at ADDR */
284 void (*deprecated_memory_changed_hook) (CORE_ADDR addr, int len);
285
286 /* Called when going to wait for the target. Usually allows the GUI to run
287 while waiting for target events. */
288
289 ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
290 struct target_waitstatus * status);
291
292 /* Used by UI as a wrapper around command execution. May do various things
293 like enabling/disabling buttons, etc... */
294
295 void (*deprecated_call_command_hook) (struct cmd_list_element * c, char *cmd,
296 int from_tty);
297
298 /* Called after a `set' command has finished. Is only run if the
299 `set' command succeeded. */
300
301 void (*deprecated_set_hook) (struct cmd_list_element * c);
302
303 /* Called when the current thread changes. Argument is thread id. */
304
305 void (*deprecated_context_hook) (int id);
306
307 /* Takes control from error (). Typically used to prevent longjmps out of the
308 middle of the GUI. Usually used in conjunction with a catch routine. */
309
310 void (*deprecated_error_hook) (void);
311
312 /* Handler for SIGHUP. */
313
314 #ifdef SIGHUP
315 /* NOTE 1999-04-29: This function will be static again, once we modify
316 gdb to use the event loop as the default command loop and we merge
317 event-top.c into this file, top.c */
318 /* static */ int
319 quit_cover (void *s)
320 {
321 caution = 0; /* Throw caution to the wind -- we're exiting.
322 This prevents asking the user dumb questions. */
323 quit_command ((char *) 0, 0);
324 return 0;
325 }
326 #endif /* defined SIGHUP */
327 \f
328 /* Line number we are currently in in a file which is being sourced. */
329 /* NOTE 1999-04-29: This variable will be static again, once we modify
330 gdb to use the event loop as the default command loop and we merge
331 event-top.c into this file, top.c */
332 /* static */ int source_line_number;
333
334 /* Name of the file we are sourcing. */
335 /* NOTE 1999-04-29: This variable will be static again, once we modify
336 gdb to use the event loop as the default command loop and we merge
337 event-top.c into this file, top.c */
338 /* static */ char *source_file_name;
339
340 /* Clean up on error during a "source" command (or execution of a
341 user-defined command). */
342
343 void
344 do_restore_instream_cleanup (void *stream)
345 {
346 /* Restore the previous input stream. */
347 instream = stream;
348 }
349
350 /* Read commands from STREAM. */
351 void
352 read_command_file (FILE *stream)
353 {
354 struct cleanup *cleanups;
355
356 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
357 instream = stream;
358 command_loop ();
359 do_cleanups (cleanups);
360 }
361 \f
362 void (*pre_init_ui_hook) (void);
363
364 #ifdef __MSDOS__
365 void
366 do_chdir_cleanup (void *old_dir)
367 {
368 chdir (old_dir);
369 xfree (old_dir);
370 }
371 #endif
372
373 /* Execute the line P as a command.
374 Pass FROM_TTY as second argument to the defining function. */
375
376 void
377 execute_command (char *p, int from_tty)
378 {
379 struct cmd_list_element *c;
380 enum language flang;
381 static int warned = 0;
382 char *line;
383
384 free_all_values ();
385
386 /* Force cleanup of any alloca areas if using C alloca instead of
387 a builtin alloca. */
388 alloca (0);
389
390 /* This can happen when command_line_input hits end of file. */
391 if (p == NULL)
392 return;
393
394 serial_log_command (p);
395
396 while (*p == ' ' || *p == '\t')
397 p++;
398 if (*p)
399 {
400 char *arg;
401 line = p;
402
403 /* If trace-commands is set then this will print this command. */
404 print_command_trace (p);
405
406 c = lookup_cmd (&p, cmdlist, "", 0, 1);
407
408 /* If the target is running, we allow only a limited set of
409 commands. */
410 if (target_can_async_p () && target_executing)
411 if (strcmp (c->name, "help") != 0
412 && strcmp (c->name, "pwd") != 0
413 && strcmp (c->name, "show") != 0
414 && strcmp (c->name, "stop") != 0)
415 error (_("Cannot execute this command while the target is running."));
416
417 /* Pass null arg rather than an empty one. */
418 arg = *p ? p : 0;
419
420 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
421 while the is_complete_command(cfunc) test is just plain
422 bogus. They should both be replaced by a test of the form
423 c->strip_trailing_white_space_p. */
424 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
425 can't be replaced with func. This is because it is the
426 cfunc, and not the func, that has the value that the
427 is_complete_command hack is testing for. */
428 /* Clear off trailing whitespace, except for set and complete
429 command. */
430 if (arg
431 && c->type != set_cmd
432 && !is_complete_command (c))
433 {
434 p = arg + strlen (arg) - 1;
435 while (p >= arg && (*p == ' ' || *p == '\t'))
436 p--;
437 *(p + 1) = '\0';
438 }
439
440 /* If this command has been pre-hooked, run the hook first. */
441 execute_cmd_pre_hook (c);
442
443 if (c->flags & DEPRECATED_WARN_USER)
444 deprecated_cmd_warning (&line);
445
446 if (c->class == class_user)
447 execute_user_command (c, arg);
448 else if (c->type == set_cmd || c->type == show_cmd)
449 do_setshow_command (arg, from_tty & caution, c);
450 else if (!cmd_func_p (c))
451 error (_("That is not a command, just a help topic."));
452 else if (deprecated_call_command_hook)
453 deprecated_call_command_hook (c, arg, from_tty & caution);
454 else
455 cmd_func (c, arg, from_tty & caution);
456
457 /* If this command has been post-hooked, run the hook last. */
458 execute_cmd_post_hook (c);
459
460 }
461
462 /* Tell the user if the language has changed (except first time). */
463 if (current_language != expected_language)
464 {
465 if (language_mode == language_mode_auto)
466 {
467 language_info (1); /* Print what changed. */
468 }
469 warned = 0;
470 }
471
472 /* Warn the user if the working language does not match the
473 language of the current frame. Only warn the user if we are
474 actually running the program, i.e. there is a stack. */
475 /* FIXME: This should be cacheing the frame and only running when
476 the frame changes. */
477
478 if (target_has_stack)
479 {
480 flang = get_frame_language ();
481 if (!warned
482 && flang != language_unknown
483 && flang != current_language->la_language)
484 {
485 printf_filtered ("%s\n", lang_frame_mismatch_warn);
486 warned = 1;
487 }
488 }
489 }
490
491 /* Read commands from `instream' and execute them
492 until end of file or error reading instream. */
493
494 void
495 command_loop (void)
496 {
497 struct cleanup *old_chain;
498 char *command;
499 int stdin_is_tty = ISATTY (stdin);
500 long time_at_cmd_start;
501 #ifdef HAVE_SBRK
502 long space_at_cmd_start = 0;
503 #endif
504 extern int display_time;
505 extern int display_space;
506
507 while (instream && !feof (instream))
508 {
509 if (window_hook && instream == stdin)
510 (*window_hook) (instream, get_prompt ());
511
512 quit_flag = 0;
513 if (instream == stdin && stdin_is_tty)
514 reinitialize_more_filter ();
515 old_chain = make_cleanup (null_cleanup, 0);
516
517 /* Get a command-line. This calls the readline package. */
518 command = command_line_input (instream == stdin ?
519 get_prompt () : (char *) NULL,
520 instream == stdin, "prompt");
521 if (command == 0)
522 return;
523
524 time_at_cmd_start = get_run_time ();
525
526 if (display_space)
527 {
528 #ifdef HAVE_SBRK
529 char *lim = (char *) sbrk (0);
530 space_at_cmd_start = lim - lim_at_start;
531 #endif
532 }
533
534 execute_command (command, instream == stdin);
535 /* Do any commands attached to breakpoint we stopped at. */
536 bpstat_do_actions (&stop_bpstat);
537 do_cleanups (old_chain);
538
539 if (display_time)
540 {
541 long cmd_time = get_run_time () - time_at_cmd_start;
542
543 printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
544 cmd_time / 1000000, cmd_time % 1000000);
545 }
546
547 if (display_space)
548 {
549 #ifdef HAVE_SBRK
550 char *lim = (char *) sbrk (0);
551 long space_now = lim - lim_at_start;
552 long space_diff = space_now - space_at_cmd_start;
553
554 printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
555 space_now,
556 (space_diff >= 0 ? '+' : '-'),
557 space_diff);
558 #endif
559 }
560 }
561 }
562
563 /* Read commands from `instream' and execute them until end of file or
564 error reading instream. This command loop doesnt care about any
565 such things as displaying time and space usage. If the user asks
566 for those, they won't work. */
567 void
568 simplified_command_loop (char *(*read_input_func) (char *),
569 void (*execute_command_func) (char *, int))
570 {
571 struct cleanup *old_chain;
572 char *command;
573 int stdin_is_tty = ISATTY (stdin);
574
575 while (instream && !feof (instream))
576 {
577 quit_flag = 0;
578 if (instream == stdin && stdin_is_tty)
579 reinitialize_more_filter ();
580 old_chain = make_cleanup (null_cleanup, 0);
581
582 /* Get a command-line. */
583 command = (*read_input_func) (instream == stdin ?
584 get_prompt () : (char *) NULL);
585
586 if (command == 0)
587 return;
588
589 (*execute_command_func) (command, instream == stdin);
590
591 /* Do any commands attached to breakpoint we stopped at. */
592 bpstat_do_actions (&stop_bpstat);
593
594 do_cleanups (old_chain);
595 }
596 }
597 \f
598 /* Commands call this if they do not want to be repeated by null lines. */
599
600 void
601 dont_repeat (void)
602 {
603 if (server_command)
604 return;
605
606 /* If we aren't reading from standard input, we are saving the last
607 thing read from stdin in line and don't want to delete it. Null lines
608 won't repeat here in any case. */
609 if (instream == stdin)
610 *line = 0;
611 }
612 \f
613 /* Read a line from the stream "instream" without command line editing.
614
615 It prints PROMPT_ARG once at the start.
616 Action is compatible with "readline", e.g. space for the result is
617 malloc'd and should be freed by the caller.
618
619 A NULL return means end of file. */
620 char *
621 gdb_readline (char *prompt_arg)
622 {
623 int c;
624 char *result;
625 int input_index = 0;
626 int result_size = 80;
627
628 if (prompt_arg)
629 {
630 /* Don't use a _filtered function here. It causes the assumed
631 character position to be off, since the newline we read from
632 the user is not accounted for. */
633 fputs_unfiltered (prompt_arg, gdb_stdout);
634 gdb_flush (gdb_stdout);
635 }
636
637 result = (char *) xmalloc (result_size);
638
639 while (1)
640 {
641 /* Read from stdin if we are executing a user defined command.
642 This is the right thing for prompt_for_continue, at least. */
643 c = fgetc (instream ? instream : stdin);
644
645 if (c == EOF)
646 {
647 if (input_index > 0)
648 /* The last line does not end with a newline. Return it, and
649 if we are called again fgetc will still return EOF and
650 we'll return NULL then. */
651 break;
652 xfree (result);
653 return NULL;
654 }
655
656 if (c == '\n')
657 {
658 if (input_index > 0 && result[input_index - 1] == '\r')
659 input_index--;
660 break;
661 }
662
663 result[input_index++] = c;
664 while (input_index >= result_size)
665 {
666 result_size *= 2;
667 result = (char *) xrealloc (result, result_size);
668 }
669 }
670
671 result[input_index++] = '\0';
672 return result;
673 }
674
675 /* Variables which control command line editing and history
676 substitution. These variables are given default values at the end
677 of this file. */
678 static int command_editing_p;
679
680 /* NOTE 1999-04-29: This variable will be static again, once we modify
681 gdb to use the event loop as the default command loop and we merge
682 event-top.c into this file, top.c */
683
684 /* static */ int history_expansion_p;
685
686 static int write_history_p;
687 static void
688 show_write_history_p (struct ui_file *file, int from_tty,
689 struct cmd_list_element *c, const char *value)
690 {
691 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
692 value);
693 }
694
695 static int history_size;
696 static void
697 show_history_size (struct ui_file *file, int from_tty,
698 struct cmd_list_element *c, const char *value)
699 {
700 fprintf_filtered (file, _("The size of the command history is %s.\n"),
701 value);
702 }
703
704 static char *history_filename;
705 static void
706 show_history_filename (struct ui_file *file, int from_tty,
707 struct cmd_list_element *c, const char *value)
708 {
709 fprintf_filtered (file, _("\
710 The filename in which to record the command history is \"%s\".\n"),
711 value);
712 }
713
714 /* This is like readline(), but it has some gdb-specific behavior.
715 gdb can use readline in both the synchronous and async modes during
716 a single gdb invocation. At the ordinary top-level prompt we might
717 be using the async readline. That means we can't use
718 rl_pre_input_hook, since it doesn't work properly in async mode.
719 However, for a secondary prompt (" >", such as occurs during a
720 `define'), gdb just calls readline() directly, running it in
721 synchronous mode. So for operate-and-get-next to work in this
722 situation, we have to switch the hooks around. That is what
723 gdb_readline_wrapper is for. */
724 char *
725 gdb_readline_wrapper (char *prompt)
726 {
727 /* Set the hook that works in this case. */
728 if (after_char_processing_hook)
729 {
730 rl_pre_input_hook = (Function *) after_char_processing_hook;
731 after_char_processing_hook = NULL;
732 }
733
734 return readline (prompt);
735 }
736
737 \f
738 #ifdef STOP_SIGNAL
739 static void
740 stop_sig (int signo)
741 {
742 #if STOP_SIGNAL == SIGTSTP
743 signal (SIGTSTP, SIG_DFL);
744 #if HAVE_SIGPROCMASK
745 {
746 sigset_t zero;
747
748 sigemptyset (&zero);
749 sigprocmask (SIG_SETMASK, &zero, 0);
750 }
751 #elif HAVE_SIGSETMASK
752 sigsetmask (0);
753 #endif
754 kill (getpid (), SIGTSTP);
755 signal (SIGTSTP, stop_sig);
756 #else
757 signal (STOP_SIGNAL, stop_sig);
758 #endif
759 printf_unfiltered ("%s", get_prompt ());
760 gdb_flush (gdb_stdout);
761
762 /* Forget about any previous command -- null line now will do nothing. */
763 dont_repeat ();
764 }
765 #endif /* STOP_SIGNAL */
766
767 /* Initialize signal handlers. */
768 static void
769 float_handler (int signo)
770 {
771 /* This message is based on ANSI C, section 4.7. Note that integer
772 divide by zero causes this, so "float" is a misnomer. */
773 signal (SIGFPE, float_handler);
774 error (_("Erroneous arithmetic operation."));
775 }
776
777 static void
778 do_nothing (int signo)
779 {
780 /* Under System V the default disposition of a signal is reinstated after
781 the signal is caught and delivered to an application process. On such
782 systems one must restore the replacement signal handler if one wishes
783 to continue handling the signal in one's program. On BSD systems this
784 is not needed but it is harmless, and it simplifies the code to just do
785 it unconditionally. */
786 signal (signo, do_nothing);
787 }
788
789 /* The current saved history number from operate-and-get-next.
790 This is -1 if not valid. */
791 static int operate_saved_history = -1;
792
793 /* This is put on the appropriate hook and helps operate-and-get-next
794 do its work. */
795 static void
796 gdb_rl_operate_and_get_next_completion (void)
797 {
798 int delta = where_history () - operate_saved_history;
799 /* The `key' argument to rl_get_previous_history is ignored. */
800 rl_get_previous_history (delta, 0);
801 operate_saved_history = -1;
802
803 /* readline doesn't automatically update the display for us. */
804 rl_redisplay ();
805
806 after_char_processing_hook = NULL;
807 rl_pre_input_hook = NULL;
808 }
809
810 /* This is a gdb-local readline command handler. It accepts the
811 current command line (like RET does) and, if this command was taken
812 from the history, arranges for the next command in the history to
813 appear on the command line when the prompt returns.
814 We ignore the arguments. */
815 static int
816 gdb_rl_operate_and_get_next (int count, int key)
817 {
818 int where;
819
820 /* Use the async hook. */
821 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
822
823 /* Find the current line, and find the next line to use. */
824 where = where_history();
825
826 /* FIXME: kettenis/20020817: max_input_history is renamed into
827 history_max_entries in readline-4.2. When we do a new readline
828 import, we should probably change it here too, even though
829 readline maintains backwards compatibility for now by still
830 defining max_input_history. */
831 if ((history_is_stifled () && (history_length >= max_input_history)) ||
832 (where >= history_length - 1))
833 operate_saved_history = where;
834 else
835 operate_saved_history = where + 1;
836
837 return rl_newline (1, key);
838 }
839 \f
840 /* Read one line from the command input stream `instream'
841 into the local static buffer `linebuffer' (whose current length
842 is `linelength').
843 The buffer is made bigger as necessary.
844 Returns the address of the start of the line.
845
846 NULL is returned for end of file.
847
848 *If* the instream == stdin & stdin is a terminal, the line read
849 is copied into the file line saver (global var char *line,
850 length linesize) so that it can be duplicated.
851
852 This routine either uses fancy command line editing or
853 simple input as the user has requested. */
854
855 char *
856 command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
857 {
858 static char *linebuffer = 0;
859 static unsigned linelength = 0;
860 char *p;
861 char *p1;
862 char *rl;
863 char *local_prompt = prompt_arg;
864 char *nline;
865 char got_eof = 0;
866
867 /* The annotation suffix must be non-NULL. */
868 if (annotation_suffix == NULL)
869 annotation_suffix = "";
870
871 if (annotation_level > 1 && instream == stdin)
872 {
873 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
874 + strlen (annotation_suffix) + 40);
875 if (prompt_arg == NULL)
876 local_prompt[0] = '\0';
877 else
878 strcpy (local_prompt, prompt_arg);
879 strcat (local_prompt, "\n\032\032");
880 strcat (local_prompt, annotation_suffix);
881 strcat (local_prompt, "\n");
882 }
883
884 if (linebuffer == 0)
885 {
886 linelength = 80;
887 linebuffer = (char *) xmalloc (linelength);
888 }
889
890 p = linebuffer;
891
892 /* Control-C quits instantly if typed while in this loop
893 since it should not wait until the user types a newline. */
894 immediate_quit++;
895 #ifdef STOP_SIGNAL
896 if (job_control)
897 signal (STOP_SIGNAL, handle_stop_sig);
898 #endif
899
900 while (1)
901 {
902 /* Make sure that all output has been output. Some machines may let
903 you get away with leaving out some of the gdb_flush, but not all. */
904 wrap_here ("");
905 gdb_flush (gdb_stdout);
906 gdb_flush (gdb_stderr);
907
908 if (source_file_name != NULL)
909 ++source_line_number;
910
911 if (annotation_level > 1 && instream == stdin)
912 {
913 puts_unfiltered ("\n\032\032pre-");
914 puts_unfiltered (annotation_suffix);
915 puts_unfiltered ("\n");
916 }
917
918 /* Don't use fancy stuff if not talking to stdin. */
919 if (deprecated_readline_hook && input_from_terminal_p ())
920 {
921 rl = (*deprecated_readline_hook) (local_prompt);
922 }
923 else if (command_editing_p && input_from_terminal_p ())
924 {
925 rl = gdb_readline_wrapper (local_prompt);
926 }
927 else
928 {
929 rl = gdb_readline (local_prompt);
930 }
931
932 if (annotation_level > 1 && instream == stdin)
933 {
934 puts_unfiltered ("\n\032\032post-");
935 puts_unfiltered (annotation_suffix);
936 puts_unfiltered ("\n");
937 }
938
939 if (!rl || rl == (char *) EOF)
940 {
941 got_eof = 1;
942 break;
943 }
944 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
945 {
946 linelength = strlen (rl) + 1 + (p - linebuffer);
947 nline = (char *) xrealloc (linebuffer, linelength);
948 p += nline - linebuffer;
949 linebuffer = nline;
950 }
951 p1 = rl;
952 /* Copy line. Don't copy null at end. (Leaves line alone
953 if this was just a newline) */
954 while (*p1)
955 *p++ = *p1++;
956
957 xfree (rl); /* Allocated in readline. */
958
959 if (p == linebuffer || *(p - 1) != '\\')
960 break;
961
962 p--; /* Put on top of '\'. */
963 local_prompt = (char *) 0;
964 }
965
966 #ifdef STOP_SIGNAL
967 if (job_control)
968 signal (STOP_SIGNAL, SIG_DFL);
969 #endif
970 immediate_quit--;
971
972 if (got_eof)
973 return NULL;
974
975 #define SERVER_COMMAND_LENGTH 7
976 server_command =
977 (p - linebuffer > SERVER_COMMAND_LENGTH)
978 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
979 if (server_command)
980 {
981 /* Note that we don't set `line'. Between this and the check in
982 dont_repeat, this insures that repeating will still do the
983 right thing. */
984 *p = '\0';
985 return linebuffer + SERVER_COMMAND_LENGTH;
986 }
987
988 /* Do history expansion if that is wished. */
989 if (history_expansion_p && instream == stdin
990 && ISATTY (instream))
991 {
992 char *history_value;
993 int expanded;
994
995 *p = '\0'; /* Insert null now. */
996 expanded = history_expand (linebuffer, &history_value);
997 if (expanded)
998 {
999 /* Print the changes. */
1000 printf_unfiltered ("%s\n", history_value);
1001
1002 /* If there was an error, call this function again. */
1003 if (expanded < 0)
1004 {
1005 xfree (history_value);
1006 return command_line_input (prompt_arg, repeat, annotation_suffix);
1007 }
1008 if (strlen (history_value) > linelength)
1009 {
1010 linelength = strlen (history_value) + 1;
1011 linebuffer = (char *) xrealloc (linebuffer, linelength);
1012 }
1013 strcpy (linebuffer, history_value);
1014 p = linebuffer + strlen (linebuffer);
1015 xfree (history_value);
1016 }
1017 }
1018
1019 /* If we just got an empty line, and that is supposed
1020 to repeat the previous command, return the value in the
1021 global buffer. */
1022 if (repeat && p == linebuffer)
1023 return line;
1024 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1025 if (repeat && !*p1)
1026 return line;
1027
1028 *p = 0;
1029
1030 /* Add line to history if appropriate. */
1031 if (instream == stdin
1032 && ISATTY (stdin) && *linebuffer)
1033 add_history (linebuffer);
1034
1035 /* Note: lines consisting solely of comments are added to the command
1036 history. This is useful when you type a command, and then
1037 realize you don't want to execute it quite yet. You can comment
1038 out the command and then later fetch it from the value history
1039 and remove the '#'. The kill ring is probably better, but some
1040 people are in the habit of commenting things out. */
1041 if (*p1 == '#')
1042 *p1 = '\0'; /* Found a comment. */
1043
1044 /* Save into global buffer if appropriate. */
1045 if (repeat)
1046 {
1047 if (linelength > linesize)
1048 {
1049 line = xrealloc (line, linelength);
1050 linesize = linelength;
1051 }
1052 strcpy (line, linebuffer);
1053 return line;
1054 }
1055
1056 return linebuffer;
1057 }
1058 \f
1059 /* Print the GDB banner. */
1060 void
1061 print_gdb_version (struct ui_file *stream)
1062 {
1063 /* From GNU coding standards, first line is meant to be easy for a
1064 program to parse, and is just canonical program name and version
1065 number, which starts after last space. */
1066
1067 fprintf_filtered (stream, "GNU gdb %s\n", version);
1068
1069 /* Second line is a copyright notice. */
1070
1071 fprintf_filtered (stream, "Copyright (C) 2006 Free Software Foundation, Inc.\n");
1072
1073 /* Following the copyright is a brief statement that the program is
1074 free software, that users are free to copy and change it on
1075 certain conditions, that it is covered by the GNU GPL, and that
1076 there is no warranty. */
1077
1078 fprintf_filtered (stream, "\
1079 GDB is free software, covered by the GNU General Public License, and you are\n\
1080 welcome to change it and/or distribute copies of it under certain conditions.\n\
1081 Type \"show copying\" to see the conditions.\n\
1082 There is absolutely no warranty for GDB. Type \"show warranty\" for details.\n");
1083
1084 /* After the required info we print the configuration information. */
1085
1086 fprintf_filtered (stream, "This GDB was configured as \"");
1087 if (strcmp (host_name, target_name) != 0)
1088 {
1089 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1090 }
1091 else
1092 {
1093 fprintf_filtered (stream, "%s", host_name);
1094 }
1095 fprintf_filtered (stream, "\".");
1096 }
1097 \f
1098 /* get_prompt: access method for the GDB prompt string. */
1099
1100 char *
1101 get_prompt (void)
1102 {
1103 return PROMPT (0);
1104 }
1105
1106 void
1107 set_prompt (char *s)
1108 {
1109 /* ??rehrauer: I don't know why this fails, since it looks as though
1110 assignments to prompt are wrapped in calls to savestring...
1111 if (prompt != NULL)
1112 xfree (prompt);
1113 */
1114 PROMPT (0) = savestring (s, strlen (s));
1115 }
1116 \f
1117
1118 /* If necessary, make the user confirm that we should quit. Return
1119 non-zero if we should quit, zero if we shouldn't. */
1120
1121 int
1122 quit_confirm (void)
1123 {
1124 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1125 {
1126 char *s;
1127
1128 /* This is something of a hack. But there's no reliable way to
1129 see if a GUI is running. The `use_windows' variable doesn't
1130 cut it. */
1131 if (deprecated_init_ui_hook)
1132 s = "A debugging session is active.\nDo you still want to close the debugger?";
1133 else if (attach_flag)
1134 s = "The program is running. Quit anyway (and detach it)? ";
1135 else
1136 s = "The program is running. Exit anyway? ";
1137
1138 if (!query ("%s", s))
1139 return 0;
1140 }
1141
1142 return 1;
1143 }
1144
1145 /* Helper routine for quit_force that requires error handling. */
1146
1147 struct qt_args
1148 {
1149 char *args;
1150 int from_tty;
1151 };
1152
1153 static int
1154 quit_target (void *arg)
1155 {
1156 struct qt_args *qt = (struct qt_args *)arg;
1157
1158 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1159 {
1160 if (attach_flag)
1161 target_detach (qt->args, qt->from_tty);
1162 else
1163 target_kill ();
1164 }
1165
1166 /* UDI wants this, to kill the TIP. */
1167 target_close (&current_target, 1);
1168
1169 /* Save the history information if it is appropriate to do so. */
1170 if (write_history_p && history_filename)
1171 write_history (history_filename);
1172
1173 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
1174
1175 return 0;
1176 }
1177
1178 /* Quit without asking for confirmation. */
1179
1180 void
1181 quit_force (char *args, int from_tty)
1182 {
1183 int exit_code = 0;
1184 struct qt_args qt;
1185
1186 /* An optional expression may be used to cause gdb to terminate with the
1187 value of that expression. */
1188 if (args)
1189 {
1190 struct value *val = parse_and_eval (args);
1191
1192 exit_code = (int) value_as_long (val);
1193 }
1194 else if (return_child_result)
1195 exit_code = return_child_result_value;
1196
1197 qt.args = args;
1198 qt.from_tty = from_tty;
1199
1200 /* We want to handle any quit errors and exit regardless. */
1201 catch_errors (quit_target, &qt,
1202 "Quitting: ", RETURN_MASK_ALL);
1203
1204 exit (exit_code);
1205 }
1206
1207 /* Returns whether GDB is running on a terminal and input is
1208 currently coming from that terminal. */
1209
1210 int
1211 input_from_terminal_p (void)
1212 {
1213 if (gdb_has_a_terminal () && instream == stdin)
1214 return 1;
1215
1216 /* If INSTREAM is unset, and we are not in a user command, we
1217 must be in Insight. That's like having a terminal, for our
1218 purposes. */
1219 if (instream == NULL && !in_user_command)
1220 return 1;
1221
1222 return 0;
1223 }
1224 \f
1225 static void
1226 dont_repeat_command (char *ignored, int from_tty)
1227 {
1228 *line = 0; /* Can't call dont_repeat here because we're not
1229 necessarily reading from stdin. */
1230 }
1231 \f
1232 /* Functions to manipulate command line editing control variables. */
1233
1234 /* Number of commands to print in each call to show_commands. */
1235 #define Hist_print 10
1236 void
1237 show_commands (char *args, int from_tty)
1238 {
1239 /* Index for history commands. Relative to history_base. */
1240 int offset;
1241
1242 /* Number of the history entry which we are planning to display next.
1243 Relative to history_base. */
1244 static int num = 0;
1245
1246 /* The first command in the history which doesn't exist (i.e. one more
1247 than the number of the last command). Relative to history_base. */
1248 int hist_len;
1249
1250 /* Print out some of the commands from the command history. */
1251 /* First determine the length of the history list. */
1252 hist_len = history_size;
1253 for (offset = 0; offset < history_size; offset++)
1254 {
1255 if (!history_get (history_base + offset))
1256 {
1257 hist_len = offset;
1258 break;
1259 }
1260 }
1261
1262 if (args)
1263 {
1264 if (args[0] == '+' && args[1] == '\0')
1265 /* "info editing +" should print from the stored position. */
1266 ;
1267 else
1268 /* "info editing <exp>" should print around command number <exp>. */
1269 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1270 }
1271 /* "show commands" means print the last Hist_print commands. */
1272 else
1273 {
1274 num = hist_len - Hist_print;
1275 }
1276
1277 if (num < 0)
1278 num = 0;
1279
1280 /* If there are at least Hist_print commands, we want to display the last
1281 Hist_print rather than, say, the last 6. */
1282 if (hist_len - num < Hist_print)
1283 {
1284 num = hist_len - Hist_print;
1285 if (num < 0)
1286 num = 0;
1287 }
1288
1289 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1290 {
1291 printf_filtered ("%5d %s\n", history_base + offset,
1292 (history_get (history_base + offset))->line);
1293 }
1294
1295 /* The next command we want to display is the next one that we haven't
1296 displayed yet. */
1297 num += Hist_print;
1298
1299 /* If the user repeats this command with return, it should do what
1300 "show commands +" does. This is unnecessary if arg is null,
1301 because "show commands +" is not useful after "show commands". */
1302 if (from_tty && args)
1303 {
1304 args[0] = '+';
1305 args[1] = '\0';
1306 }
1307 }
1308
1309 /* Called by do_setshow_command. */
1310 static void
1311 set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
1312 {
1313 if (history_size == INT_MAX)
1314 unstifle_history ();
1315 else if (history_size >= 0)
1316 stifle_history (history_size);
1317 else
1318 {
1319 history_size = INT_MAX;
1320 error (_("History size must be non-negative"));
1321 }
1322 }
1323
1324 void
1325 set_history (char *args, int from_tty)
1326 {
1327 printf_unfiltered (_("\"set history\" must be followed by the name of a history subcommand.\n"));
1328 help_list (sethistlist, "set history ", -1, gdb_stdout);
1329 }
1330
1331 void
1332 show_history (char *args, int from_tty)
1333 {
1334 cmd_show_list (showhistlist, from_tty, "");
1335 }
1336
1337 int info_verbose = 0; /* Default verbose msgs off */
1338
1339 /* Called by do_setshow_command. An elaborate joke. */
1340 void
1341 set_verbose (char *args, int from_tty, struct cmd_list_element *c)
1342 {
1343 char *cmdname = "verbose";
1344 struct cmd_list_element *showcmd;
1345
1346 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1347
1348 if (info_verbose)
1349 {
1350 c->doc = "Set verbose printing of informational messages.";
1351 showcmd->doc = "Show verbose printing of informational messages.";
1352 }
1353 else
1354 {
1355 c->doc = "Set verbosity.";
1356 showcmd->doc = "Show verbosity.";
1357 }
1358 }
1359
1360 /* Init the history buffer. Note that we are called after the init file(s)
1361 * have been read so that the user can change the history file via his
1362 * .gdbinit file (for instance). The GDBHISTFILE environment variable
1363 * overrides all of this.
1364 */
1365
1366 void
1367 init_history (void)
1368 {
1369 char *tmpenv;
1370
1371 tmpenv = getenv ("HISTSIZE");
1372 if (tmpenv)
1373 history_size = atoi (tmpenv);
1374 else if (!history_size)
1375 history_size = 256;
1376
1377 stifle_history (history_size);
1378
1379 tmpenv = getenv ("GDBHISTFILE");
1380 if (tmpenv)
1381 history_filename = savestring (tmpenv, strlen (tmpenv));
1382 else if (!history_filename)
1383 {
1384 /* We include the current directory so that if the user changes
1385 directories the file written will be the same as the one
1386 that was read. */
1387 #ifdef __MSDOS__
1388 /* No leading dots in file names are allowed on MSDOS. */
1389 history_filename = concat (current_directory, "/_gdb_history",
1390 (char *)NULL);
1391 #else
1392 history_filename = concat (current_directory, "/.gdb_history",
1393 (char *)NULL);
1394 #endif
1395 }
1396 read_history (history_filename);
1397 }
1398
1399 static void
1400 show_new_async_prompt (struct ui_file *file, int from_tty,
1401 struct cmd_list_element *c, const char *value)
1402 {
1403 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1404 }
1405
1406 static void
1407 show_async_command_editing_p (struct ui_file *file, int from_tty,
1408 struct cmd_list_element *c, const char *value)
1409 {
1410 fprintf_filtered (file, _("\
1411 Editing of command lines as they are typed is %s.\n"),
1412 value);
1413 }
1414
1415 static void
1416 show_annotation_level (struct ui_file *file, int from_tty,
1417 struct cmd_list_element *c, const char *value)
1418 {
1419 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1420 }
1421
1422 static void
1423 show_exec_done_display_p (struct ui_file *file, int from_tty,
1424 struct cmd_list_element *c, const char *value)
1425 {
1426 fprintf_filtered (file, _("\
1427 Notification of completion for asynchronous execution commands is %s.\n"),
1428 value);
1429 }
1430 static void
1431 init_main (void)
1432 {
1433 struct cmd_list_element *c;
1434
1435 /* initialize the prompt stack to a simple "(gdb) " prompt or to
1436 whatever the DEFAULT_PROMPT is. */
1437 the_prompts.top = 0;
1438 PREFIX (0) = "";
1439 PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1440 SUFFIX (0) = "";
1441 /* Set things up for annotation_level > 1, if the user ever decides
1442 to use it. */
1443 async_annotation_suffix = "prompt";
1444 /* Set the variable associated with the setshow prompt command. */
1445 new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1446
1447 /* If gdb was started with --annotate=2, this is equivalent to the
1448 user entering the command 'set annotate 2' at the gdb prompt, so
1449 we need to do extra processing. */
1450 if (annotation_level > 1)
1451 set_async_annotation_level (NULL, 0, NULL);
1452
1453 /* Set the important stuff up for command editing. */
1454 command_editing_p = 1;
1455 history_expansion_p = 0;
1456 write_history_p = 0;
1457
1458 /* Setup important stuff for command line editing. */
1459 rl_completion_entry_function = readline_line_completion_function;
1460 rl_completer_word_break_characters = default_word_break_characters ();
1461 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
1462 rl_readline_name = "gdb";
1463 rl_terminal_name = getenv ("TERM");
1464
1465 /* The name for this defun comes from Bash, where it originated.
1466 15 is Control-o, the same binding this function has in Bash. */
1467 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1468
1469 add_setshow_string_cmd ("prompt", class_support,
1470 &new_async_prompt, _("\
1471 Set gdb's prompt"), _("\
1472 Show gdb's prompt"), NULL,
1473 set_async_prompt,
1474 show_new_async_prompt,
1475 &setlist, &showlist);
1476
1477 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
1478 Don't repeat this command.\n\
1479 Primarily used inside of user-defined commands that should not be repeated when\n\
1480 hitting return."));
1481
1482 add_setshow_boolean_cmd ("editing", class_support,
1483 &async_command_editing_p, _("\
1484 Set editing of command lines as they are typed."), _("\
1485 Show editing of command lines as they are typed."), _("\
1486 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1487 Without an argument, command line editing is enabled. To edit, use\n\
1488 EMACS-like or VI-like commands like control-P or ESC."),
1489 set_async_editing_command,
1490 show_async_command_editing_p,
1491 &setlist, &showlist);
1492
1493 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1494 Set saving of the history record on exit."), _("\
1495 Show saving of the history record on exit."), _("\
1496 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
1497 Without an argument, saving is enabled."),
1498 NULL,
1499 show_write_history_p,
1500 &sethistlist, &showhistlist);
1501
1502 add_setshow_integer_cmd ("size", no_class, &history_size, _("\
1503 Set the size of the command history,"), _("\
1504 Show the size of the command history,"), _("\
1505 ie. the number of previous commands to keep a record of."),
1506 set_history_size_command,
1507 show_history_size,
1508 &sethistlist, &showhistlist);
1509
1510 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1511 Set the filename in which to record the command history"), _("\
1512 Show the filename in which to record the command history"), _("\
1513 (the list of previous commands of which a record is kept)."),
1514 NULL,
1515 show_history_filename,
1516 &sethistlist, &showhistlist);
1517
1518 add_setshow_boolean_cmd ("confirm", class_support, &caution, _("\
1519 Set whether to confirm potentially dangerous operations."), _("\
1520 Show whether to confirm potentially dangerous operations."), NULL,
1521 NULL,
1522 show_caution,
1523 &setlist, &showlist);
1524
1525 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1526 Set annotation_level."), _("\
1527 Show annotation_level."), _("\
1528 0 == normal; 1 == fullname (for use when running under emacs)\n\
1529 2 == output annotated suitably for use by programs that control GDB."),
1530 set_async_annotation_level,
1531 show_annotation_level,
1532 &setlist, &showlist);
1533
1534 add_setshow_boolean_cmd ("exec-done-display", class_support,
1535 &exec_done_display_p, _("\
1536 Set notification of completion for asynchronous execution commands."), _("\
1537 Show notification of completion for asynchronous execution commands."), _("\
1538 Use \"on\" to enable the notification, and \"off\" to disable it."),
1539 NULL,
1540 show_exec_done_display_p,
1541 &setlist, &showlist);
1542 }
1543
1544 void
1545 gdb_init (char *argv0)
1546 {
1547 if (pre_init_ui_hook)
1548 pre_init_ui_hook ();
1549
1550 /* Run the init function of each source file */
1551
1552 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
1553 current_directory = gdb_dirbuf;
1554
1555 #ifdef __MSDOS__
1556 /* Make sure we return to the original directory upon exit, come
1557 what may, since the OS doesn't do that for us. */
1558 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1559 #endif
1560
1561 init_cmd_lists (); /* This needs to be done first */
1562 initialize_targets (); /* Setup target_terminal macros for utils.c */
1563 initialize_utils (); /* Make errors and warnings possible */
1564 initialize_all_files ();
1565 initialize_current_architecture ();
1566 init_cli_cmds();
1567 init_main (); /* But that omits this file! Do it now */
1568
1569 initialize_stdin_serial ();
1570
1571 async_init_signals ();
1572
1573 /* We need a default language for parsing expressions, so simple things like
1574 "set width 0" won't fail if no language is explicitly set in a config file
1575 or implicitly set by reading an executable during startup. */
1576 set_language (language_c);
1577 expected_language = current_language; /* don't warn about the change. */
1578
1579 /* Allow another UI to initialize. If the UI fails to initialize,
1580 and it wants GDB to revert to the CLI, it should clear
1581 deprecated_init_ui_hook. */
1582 if (deprecated_init_ui_hook)
1583 deprecated_init_ui_hook (argv0);
1584 }
This page took 0.119484 seconds and 5 git commands to generate.