1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1999-2016 Free Software Foundation, Inc.
5 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
7 This file is part of GDB.
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 3 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 #include "terminal.h" /* for job_control */
28 #include "event-loop.h"
29 #include "event-top.h"
32 #include "cli/cli-script.h" /* for reset_command_nest_depth */
34 #include "gdbthread.h"
36 #include "continuations.h"
37 #include "gdbcmd.h" /* for dont_repeat() */
42 /* readline include files. */
43 #include "readline/readline.h"
44 #include "readline/history.h"
46 /* readline defines this. */
49 static void rl_callback_read_char_wrapper (gdb_client_data client_data);
50 static void command_line_handler (char *rl);
51 static void change_line_handler (void);
52 static void command_handler (char *command);
53 static char *top_level_prompt (void);
55 /* Signal handlers. */
57 static void handle_sigquit (int sig);
60 static void handle_sighup (int sig);
62 static void handle_sigfpe (int sig);
64 /* Functions to be invoked by the event loop in response to
66 #if defined (SIGQUIT) || defined (SIGHUP)
67 static void async_do_nothing (gdb_client_data);
70 static void async_disconnect (gdb_client_data);
72 static void async_float_handler (gdb_client_data);
74 static void async_stop_sig (gdb_client_data);
76 static void async_sigterm_handler (gdb_client_data arg);
78 /* Readline offers an alternate interface, via callback
79 functions. These are all included in the file callback.c in the
80 readline distribution. This file provides (mainly) a function, which
81 the event loop uses as callback (i.e. event handler) whenever an event
82 is detected on the standard input file descriptor.
83 readline_callback_read_char is called (by the GDB event loop) whenever
84 there is a new character ready on the input stream. This function
85 incrementally builds a buffer internal to readline where it
86 accumulates the line read up to the point of invocation. In the
87 special case in which the character read is newline, the function
88 invokes a GDB supplied callback routine, which does the processing of
89 a full command line. This latter routine is the asynchronous analog
90 of the old command_line_input in gdb. Instead of invoking (and waiting
91 for) readline to read the command line and pass it back to
92 command_loop for processing, the new command_line_handler function has
93 the command line already available as its parameter. INPUT_HANDLER is
94 to be set to the function that readline will invoke when a complete
95 line of input is ready. CALL_READLINE is to be set to the function
96 that readline offers as callback to the event_loop. */
98 void (*input_handler) (char *);
99 void (*call_readline) (gdb_client_data);
101 /* Important variables for the event loop. */
103 /* This is used to determine if GDB is using the readline library or
104 its own simplified form of readline. It is used by the asynchronous
105 form of the set editing command.
106 ezannoni: as of 1999-04-29 I expect that this
107 variable will not be used after gdb is changed to use the event
108 loop as default engine, and event-top.c is merged into top.c. */
109 int async_command_editing_p;
111 /* This is used to display the notification of the completion of an
112 asynchronous execution command. */
113 int exec_done_display_p = 0;
115 /* This is the file descriptor for the input stream that GDB uses to
116 read commands from. */
119 /* Used by the stdin event handler to compensate for missed stdin events.
120 Setting this to a non-zero value inside an stdin callback makes the callback
122 int call_stdin_event_handler_again_p;
124 /* Signal handling variables. */
125 /* Each of these is a pointer to a function that the event loop will
126 invoke if the corresponding signal has received. The real signal
127 handlers mark these functions as ready to be executed and the event
128 loop, in a later iteration, calls them. See the function
129 invoke_async_signal_handler. */
130 static struct async_signal_handler *sigint_token;
132 static struct async_signal_handler *sighup_token;
135 static struct async_signal_handler *sigquit_token;
137 static struct async_signal_handler *sigfpe_token;
139 static struct async_signal_handler *sigtstp_token;
141 static struct async_signal_handler *async_sigterm_token;
143 /* Structure to save a partially entered command. This is used when
144 the user types '\' at the end of a command line. This is necessary
145 because each line of input is handled by a different call to
146 command_line_handler, and normally there is no state retained
147 between different calls. */
148 static int more_to_come = 0;
150 struct readline_input_state
153 char *linebuffer_ptr;
155 readline_input_state;
157 /* This hook is called by rl_callback_read_char_wrapper after each
158 character is processed. */
159 void (*after_char_processing_hook) (void);
162 /* Wrapper function for calling into the readline library. The event
163 loop expects the callback function to have a paramter, while
164 readline expects none. */
166 rl_callback_read_char_wrapper (gdb_client_data client_data)
168 rl_callback_read_char ();
169 if (after_char_processing_hook)
170 (*after_char_processing_hook) ();
173 /* Initialize all the necessary variables, start the event loop,
174 register readline, and stdin, start the loop. The DATA is the
175 interpreter data cookie, ignored for now. */
178 cli_command_loop (void *data)
180 display_gdb_prompt (0);
182 /* Now it's time to start the event loop. */
186 /* Change the function to be invoked every time there is a character
187 ready on stdin. This is used when the user sets the editing off,
188 therefore bypassing readline, and letting gdb handle the input
189 itself, via gdb_readline_no_editing_callback. Also it is used in
190 the opposite case in which the user sets editing on again, by
191 restoring readline handling of the input. */
193 change_line_handler (void)
195 /* NOTE: this operates on input_fd, not instream. If we are reading
196 commands from a file, instream will point to the file. However in
197 async mode, we always read commands from a file with editing
198 off. This means that the 'set editing on/off' will have effect
199 only on the interactive session. */
201 if (async_command_editing_p)
203 /* Turn on editing by using readline. */
204 call_readline = rl_callback_read_char_wrapper;
205 input_handler = command_line_handler;
209 /* Turn off editing by using gdb_readline_no_editing_callback. */
210 gdb_rl_callback_handler_remove ();
211 call_readline = gdb_readline_no_editing_callback;
213 /* Set up the command handler as well, in case we are called as
214 first thing from .gdbinit. */
215 input_handler = command_line_handler;
219 /* The functions below are wrappers for rl_callback_handler_remove and
220 rl_callback_handler_install that keep track of whether the callback
221 handler is installed in readline. This is necessary because after
222 handling a target event of a background execution command, we may
223 need to reinstall the callback handler if it was removed due to a
224 secondary prompt. See gdb_readline_wrapper_line. We don't
225 unconditionally install the handler for every target event because
226 that also clears the line buffer, thus installing it while the user
227 is typing would lose input. */
229 /* Whether we've registered a callback handler with readline. */
230 static int callback_handler_installed;
232 /* See event-top.h, and above. */
235 gdb_rl_callback_handler_remove (void)
237 rl_callback_handler_remove ();
238 callback_handler_installed = 0;
241 /* See event-top.h, and above. Note this wrapper doesn't have an
242 actual callback parameter because we always install
246 gdb_rl_callback_handler_install (const char *prompt)
248 /* Calling rl_callback_handler_install resets readline's input
249 buffer. Calling this when we were already processing input
250 therefore loses input. */
251 gdb_assert (!callback_handler_installed);
253 rl_callback_handler_install (prompt, input_handler);
254 callback_handler_installed = 1;
257 /* See event-top.h, and above. */
260 gdb_rl_callback_handler_reinstall (void)
262 if (!callback_handler_installed)
264 /* Passing NULL as prompt argument tells readline to not display
266 gdb_rl_callback_handler_install (NULL);
270 /* Displays the prompt. If the argument NEW_PROMPT is NULL, the
271 prompt that is displayed is the current top level prompt.
272 Otherwise, it displays whatever NEW_PROMPT is as a local/secondary
275 This is used after each gdb command has completed, and in the
278 1. When the user enters a command line which is ended by '\'
279 indicating that the command will continue on the next line. In
280 that case the prompt that is displayed is the empty string.
282 2. When the user is entering 'commands' for a breakpoint, or
283 actions for a tracepoint. In this case the prompt will be '>'
285 3. On prompting for pagination. */
288 display_gdb_prompt (const char *new_prompt)
290 char *actual_gdb_prompt = NULL;
291 struct cleanup *old_chain;
293 annotate_display_prompt ();
295 /* Reset the nesting depth used when trace-commands is set. */
296 reset_command_nest_depth ();
298 old_chain = make_cleanup (free_current_contents, &actual_gdb_prompt);
300 /* Do not call the python hook on an explicit prompt change as
301 passed to this function, as this forms a secondary/local prompt,
302 IE, displayed but not set. */
307 /* This is to trick readline into not trying to display the
308 prompt. Even though we display the prompt using this
309 function, readline still tries to do its own display if
310 we don't call rl_callback_handler_install and
311 rl_callback_handler_remove (which readline detects
312 because a global variable is not set). If readline did
313 that, it could mess up gdb signal handlers for SIGINT.
314 Readline assumes that between calls to rl_set_signals and
315 rl_clear_signals gdb doesn't do anything with the signal
316 handlers. Well, that's not the case, because when the
317 target executes we change the SIGINT signal handler. If
318 we allowed readline to display the prompt, the signal
319 handler change would happen exactly between the calls to
320 the above two functions. Calling
321 rl_callback_handler_remove(), does the job. */
323 gdb_rl_callback_handler_remove ();
324 do_cleanups (old_chain);
329 /* Display the top level prompt. */
330 actual_gdb_prompt = top_level_prompt ();
334 actual_gdb_prompt = xstrdup (new_prompt);
336 if (async_command_editing_p)
338 gdb_rl_callback_handler_remove ();
339 gdb_rl_callback_handler_install (actual_gdb_prompt);
341 /* new_prompt at this point can be the top of the stack or the one
342 passed in. It can't be NULL. */
345 /* Don't use a _filtered function here. It causes the assumed
346 character position to be off, since the newline we read from
347 the user is not accounted for. */
348 fputs_unfiltered (actual_gdb_prompt, gdb_stdout);
349 gdb_flush (gdb_stdout);
352 do_cleanups (old_chain);
355 /* Return the top level prompt, as specified by "set prompt", possibly
356 overriden by the python gdb.prompt_hook hook, and then composed
357 with the prompt prefix and suffix (annotations). The caller is
358 responsible for freeing the returned string. */
361 top_level_prompt (void)
365 /* Give observers a chance of changing the prompt. E.g., the python
366 `gdb.prompt_hook' is installed as an observer. */
367 observer_notify_before_prompt (get_prompt ());
369 prompt = get_prompt ();
371 if (annotation_level >= 2)
373 /* Prefix needs to have new line at end. */
374 const char prefix[] = "\n\032\032pre-prompt\n";
376 /* Suffix needs to have a new line at end and \032 \032 at
378 const char suffix[] = "\n\032\032prompt\n";
380 return concat (prefix, prompt, suffix, NULL);
383 return xstrdup (prompt);
386 /* When there is an event ready on the stdin file descriptor, instead
387 of calling readline directly throught the callback function, or
388 instead of calling gdb_readline_no_editing_callback, give gdb a
389 chance to detect errors and do something. */
392 stdin_event_handler (int error, gdb_client_data client_data)
396 printf_unfiltered (_("error detected on stdin\n"));
397 delete_file_handler (input_fd);
398 /* If stdin died, we may as well kill gdb. */
399 quit_command ((char *) 0, stdin == instream);
405 call_stdin_event_handler_again_p = 0;
406 (*call_readline) (client_data);
407 } while (call_stdin_event_handler_again_p != 0);
411 /* Re-enable stdin after the end of an execution command in
412 synchronous mode, or after an error from the target, and we aborted
413 the exec operation. */
416 async_enable_stdin (void)
420 /* See NOTE in async_disable_stdin(). */
421 /* FIXME: cagney/1999-09-27: Call this before clearing
422 sync_execution. Current target_terminal_ours() implementations
423 check for sync_execution before switching the terminal. */
424 target_terminal_ours ();
429 /* Disable reads from stdin (the console) marking the command as
433 async_disable_stdin (void)
439 /* Handles a gdb command. This function is called by
440 command_line_handler, which has processed one or more input lines
442 /* NOTE: 1999-04-30 This is the asynchronous version of the command_loop
443 function. The command_loop function will be obsolete when we
444 switch to use the event loop at every execution of gdb. */
446 command_handler (char *command)
448 struct cleanup *stat_chain;
451 if (instream == stdin)
452 reinitialize_more_filter ();
454 /* If readline returned a NULL command, it means that the connection
455 with the terminal is gone. This happens at the end of a
456 testsuite run, after Expect has hung up but GDB is still alive.
457 In such a case, we just quit gdb killing the inferior program
461 printf_unfiltered ("quit\n");
462 execute_command ("quit", stdin == instream);
465 stat_chain = make_command_stats_cleanup (1);
467 execute_command (command, instream == stdin);
469 /* Do any commands attached to breakpoint we stopped at. */
470 bpstat_do_actions ();
472 do_cleanups (stat_chain);
475 /* Handle a complete line of input. This is called by the callback
476 mechanism within the readline library. Deal with incomplete
477 commands as well, by saving the partial input in a global
480 /* NOTE: 1999-04-30 This is the asynchronous version of the
481 command_line_input function; command_line_input will become
482 obsolete once we use the event loop as the default mechanism in
485 command_line_handler (char *rl)
487 static char *linebuffer = 0;
488 static unsigned linelength = 0;
492 int repeat = (instream == stdin);
494 if (annotation_level > 1 && instream == stdin)
495 printf_unfiltered (("\n\032\032post-prompt\n"));
500 linebuffer = (char *) xmalloc (linelength);
501 linebuffer[0] = '\0';
508 strcpy (linebuffer, readline_input_state.linebuffer);
509 p = readline_input_state.linebuffer_ptr;
510 xfree (readline_input_state.linebuffer);
516 signal (STOP_SIGNAL, handle_stop_sig);
519 /* Make sure that all output has been output. Some machines may let
520 you get away with leaving out some of the gdb_flush, but not
523 gdb_flush (gdb_stdout);
524 gdb_flush (gdb_stderr);
526 if (source_file_name != NULL)
527 ++source_line_number;
529 /* If we are in this case, then command_handler will call quit
530 and exit from gdb. */
531 if (!rl || rl == (char *) EOF)
536 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
538 linelength = strlen (rl) + 1 + (p - linebuffer);
539 nline = (char *) xrealloc (linebuffer, linelength);
540 p += nline - linebuffer;
544 /* Copy line. Don't copy null at end. (Leaves line alone
545 if this was just a newline). */
549 xfree (rl); /* Allocated in readline. */
551 if (p > linebuffer && *(p - 1) == '\\')
554 p--; /* Put on top of '\'. */
556 readline_input_state.linebuffer = xstrdup (linebuffer);
557 readline_input_state.linebuffer_ptr = p;
559 /* We will not invoke a execute_command if there is more
560 input expected to complete the command. So, we need to
561 print an empty prompt here. */
563 display_gdb_prompt ("");
569 signal (STOP_SIGNAL, SIG_DFL);
572 #define SERVER_COMMAND_LENGTH 7
574 (p - linebuffer > SERVER_COMMAND_LENGTH)
575 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
578 /* Note that we don't set `line'. Between this and the check in
579 dont_repeat, this insures that repeating will still do the
582 command_handler (linebuffer + SERVER_COMMAND_LENGTH);
583 display_gdb_prompt (0);
587 /* Do history expansion if that is wished. */
588 if (history_expansion_p && instream == stdin
589 && ISATTY (instream))
594 *p = '\0'; /* Insert null now. */
595 expanded = history_expand (linebuffer, &history_value);
598 /* Print the changes. */
599 printf_unfiltered ("%s\n", history_value);
601 /* If there was an error, call this function again. */
604 xfree (history_value);
607 if (strlen (history_value) > linelength)
609 linelength = strlen (history_value) + 1;
610 linebuffer = (char *) xrealloc (linebuffer, linelength);
612 strcpy (linebuffer, history_value);
613 p = linebuffer + strlen (linebuffer);
615 xfree (history_value);
618 /* If we just got an empty line, and that is supposed to repeat the
619 previous command, return the value in the global buffer. */
620 if (repeat && p == linebuffer && *p != '\\')
622 command_handler (saved_command_line);
623 display_gdb_prompt (0);
627 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
630 command_handler (saved_command_line);
631 display_gdb_prompt (0);
637 /* Add line to history if appropriate. */
638 if (*linebuffer && input_from_terminal_p ())
639 gdb_add_history (linebuffer);
641 /* Note: lines consisting solely of comments are added to the command
642 history. This is useful when you type a command, and then
643 realize you don't want to execute it quite yet. You can comment
644 out the command and then later fetch it from the value history
645 and remove the '#'. The kill ring is probably better, but some
646 people are in the habit of commenting things out. */
648 *p1 = '\0'; /* Found a comment. */
650 /* Save into global buffer if appropriate. */
653 xfree (saved_command_line);
654 saved_command_line = xstrdup (linebuffer);
657 command_handler (saved_command_line);
658 display_gdb_prompt (0);
663 command_handler (linebuffer);
664 display_gdb_prompt (0);
668 /* Does reading of input from terminal w/o the editing features
669 provided by the readline library. Calls the line input handler
670 once we have a whole input line. */
673 gdb_readline_no_editing_callback (gdb_client_data client_data)
677 struct buffer line_buffer;
678 static int done_once = 0;
680 buffer_init (&line_buffer);
682 /* Unbuffer the input stream, so that, later on, the calls to fgetc
683 fetch only one char at the time from the stream. The fgetc's will
684 get up to the first newline, but there may be more chars in the
685 stream after '\n'. If we buffer the input and fgetc drains the
686 stream, getting stuff beyond the newline as well, a select, done
687 afterwards will not trigger. */
688 if (!done_once && !ISATTY (instream))
690 setbuf (instream, NULL);
694 /* We still need the while loop here, even though it would seem
695 obvious to invoke gdb_readline_no_editing_callback at every
696 character entered. If not using the readline library, the
697 terminal is in cooked mode, which sends the characters all at
698 once. Poll will notice that the input fd has changed state only
699 after enter is pressed. At this point we still need to fetch all
700 the chars entered. */
704 /* Read from stdin if we are executing a user defined command.
705 This is the right thing for prompt_for_continue, at least. */
706 c = fgetc (instream ? instream : stdin);
710 if (line_buffer.used_size > 0)
712 /* The last line does not end with a newline. Return it, and
713 if we are called again fgetc will still return EOF and
714 we'll return NULL then. */
717 xfree (buffer_finish (&line_buffer));
718 (*input_handler) (0);
724 if (line_buffer.used_size > 0
725 && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
726 line_buffer.used_size--;
730 buffer_grow_char (&line_buffer, c);
733 buffer_grow_char (&line_buffer, '\0');
734 result = buffer_finish (&line_buffer);
735 (*input_handler) (result);
739 /* Initialization of signal handlers and tokens. There is a function
740 handle_sig* for each of the signals GDB cares about. Specifically:
741 SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These
742 functions are the actual signal handlers associated to the signals
743 via calls to signal(). The only job for these functions is to
744 enqueue the appropriate event/procedure with the event loop. Such
745 procedures are the old signal handlers. The event loop will take
746 care of invoking the queued procedures to perform the usual tasks
747 associated with the reception of the signal. */
748 /* NOTE: 1999-04-30 This is the asynchronous version of init_signals.
749 init_signals will become obsolete as we move to have to event loop
750 as the default for gdb. */
752 async_init_signals (void)
754 signal (SIGINT, handle_sigint);
756 create_async_signal_handler (async_request_quit, NULL);
757 signal (SIGTERM, handle_sigterm);
759 = create_async_signal_handler (async_sigterm_handler, NULL);
761 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
762 to the inferior and breakpoints will be ignored. */
764 signal (SIGTRAP, SIG_DFL);
768 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
769 passed to the inferior, which we don't want. It would be
770 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
771 on BSD4.3 systems using vfork, that can affect the
772 GDB process as well as the inferior (the signal handling tables
773 might be in memory, shared between the two). Since we establish
774 a handler for SIGQUIT, when we call exec it will set the signal
775 to SIG_DFL for us. */
776 signal (SIGQUIT, handle_sigquit);
778 create_async_signal_handler (async_do_nothing, NULL);
781 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
783 create_async_signal_handler (async_disconnect, NULL);
786 create_async_signal_handler (async_do_nothing, NULL);
788 signal (SIGFPE, handle_sigfpe);
790 create_async_signal_handler (async_float_handler, NULL);
794 create_async_signal_handler (async_stop_sig, NULL);
798 /* Tell the event loop what to do if SIGINT is received.
799 See event-signal.c. */
801 handle_sigint (int sig)
803 signal (sig, handle_sigint);
805 /* We could be running in a loop reading in symfiles or something so
806 it may be quite a while before we get back to the event loop. So
807 set quit_flag to 1 here. Then if QUIT is called before we get to
808 the event loop, we will unwind as expected. */
812 /* If immediate_quit is set, we go ahead and process the SIGINT right
813 away, even if we usually would defer this to the event loop. The
814 assumption here is that it is safe to process ^C immediately if
815 immediate_quit is set. If we didn't, SIGINT would be really
816 processed only the next time through the event loop. To get to
817 that point, though, the command that we want to interrupt needs to
818 finish first, which is unacceptable. If immediate quit is not set,
819 we process SIGINT the next time through the loop, which is fine. */
820 gdb_call_async_signal_handler (sigint_token, immediate_quit);
823 /* Handle GDB exit upon receiving SIGTERM if target_can_async_p (). */
826 async_sigterm_handler (gdb_client_data arg)
828 quit_force (NULL, stdin == instream);
832 volatile int sync_quit_force_run;
834 /* Quit GDB if SIGTERM is received.
835 GDB would quit anyway, but this way it will clean up properly. */
837 handle_sigterm (int sig)
839 signal (sig, handle_sigterm);
841 sync_quit_force_run = 1;
844 mark_async_signal_handler (async_sigterm_token);
847 /* Do the quit. All the checks have been done by the caller. */
849 async_request_quit (gdb_client_data arg)
851 /* If the quit_flag has gotten reset back to 0 by the time we get
852 back here, that means that an exception was thrown to unwind the
853 current command before we got back to the event loop. So there
854 is no reason to call quit again here. */
856 if (check_quit_flag ())
861 /* Tell the event loop what to do if SIGQUIT is received.
862 See event-signal.c. */
864 handle_sigquit (int sig)
866 mark_async_signal_handler (sigquit_token);
867 signal (sig, handle_sigquit);
871 #if defined (SIGQUIT) || defined (SIGHUP)
872 /* Called by the event loop in response to a SIGQUIT or an
875 async_do_nothing (gdb_client_data arg)
877 /* Empty function body. */
882 /* Tell the event loop what to do if SIGHUP is received.
883 See event-signal.c. */
885 handle_sighup (int sig)
887 mark_async_signal_handler (sighup_token);
888 signal (sig, handle_sighup);
891 /* Called by the event loop to process a SIGHUP. */
893 async_disconnect (gdb_client_data arg)
901 CATCH (exception, RETURN_MASK_ALL)
903 fputs_filtered ("Could not kill the program being debugged",
905 exception_print (gdb_stderr, exception);
913 CATCH (exception, RETURN_MASK_ALL)
918 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
925 handle_stop_sig (int sig)
927 mark_async_signal_handler (sigtstp_token);
928 signal (sig, handle_stop_sig);
932 async_stop_sig (gdb_client_data arg)
934 char *prompt = get_prompt ();
936 #if STOP_SIGNAL == SIGTSTP
937 signal (SIGTSTP, SIG_DFL);
943 sigprocmask (SIG_SETMASK, &zero, 0);
945 #elif HAVE_SIGSETMASK
949 signal (SIGTSTP, handle_stop_sig);
951 signal (STOP_SIGNAL, handle_stop_sig);
953 printf_unfiltered ("%s", prompt);
954 gdb_flush (gdb_stdout);
956 /* Forget about any previous command -- null line now will do
960 #endif /* STOP_SIGNAL */
962 /* Tell the event loop what to do if SIGFPE is received.
963 See event-signal.c. */
965 handle_sigfpe (int sig)
967 mark_async_signal_handler (sigfpe_token);
968 signal (sig, handle_sigfpe);
971 /* Event loop will call this functin to process a SIGFPE. */
973 async_float_handler (gdb_client_data arg)
975 /* This message is based on ANSI C, section 4.7. Note that integer
976 divide by zero causes this, so "float" is a misnomer. */
977 error (_("Erroneous arithmetic operation."));
981 /* Called by do_setshow_command. */
983 set_async_editing_command (char *args, int from_tty,
984 struct cmd_list_element *c)
986 change_line_handler ();
989 /* Set things up for readline to be invoked via the alternate
990 interface, i.e. via a callback function (rl_callback_read_char),
991 and hook up instream to the event loop. */
993 gdb_setup_readline (void)
995 /* This function is a noop for the sync case. The assumption is
996 that the sync setup is ALL done in gdb_init, and we would only
997 mess it up here. The sync stuff should really go away over
1000 gdb_stdout = stdio_fileopen (stdout);
1001 gdb_stderr = stderr_fileopen ();
1002 gdb_stdlog = gdb_stderr; /* for moment */
1003 gdb_stdtarg = gdb_stderr; /* for moment */
1004 gdb_stdtargerr = gdb_stderr; /* for moment */
1006 /* If the input stream is connected to a terminal, turn on
1008 if (ISATTY (instream))
1010 /* Tell gdb that we will be using the readline library. This
1011 could be overwritten by a command in .gdbinit like 'set
1012 editing on' or 'off'. */
1013 async_command_editing_p = 1;
1015 /* When a character is detected on instream by select or poll,
1016 readline will be invoked via this callback function. */
1017 call_readline = rl_callback_read_char_wrapper;
1021 async_command_editing_p = 0;
1022 call_readline = gdb_readline_no_editing_callback;
1025 /* When readline has read an end-of-line character, it passes the
1026 complete line to gdb for processing; command_line_handler is the
1027 function that does this. */
1028 input_handler = command_line_handler;
1030 /* Tell readline to use the same input stream that gdb uses. */
1031 rl_instream = instream;
1033 /* Get a file descriptor for the input stream, so that we can
1034 register it with the event loop. */
1035 input_fd = fileno (instream);
1037 /* Now we need to create the event sources for the input file
1039 /* At this point in time, this is the only event source that we
1040 register with the even loop. Another source is going to be the
1041 target program (inferior), but that must be registered only when
1042 it actually exists (I.e. after we say 'run' or after we connect
1043 to a remote target. */
1044 add_file_handler (input_fd, stdin_event_handler, 0);
1047 /* Disable command input through the standard CLI channels. Used in
1048 the suspend proc for interpreters that use the standard gdb readline
1049 interface, like the cli & the mi. */
1051 gdb_disable_readline (void)
1053 /* FIXME - It is too heavyweight to delete and remake these every
1054 time you run an interpreter that needs readline. It is probably
1055 better to have the interpreters cache these, which in turn means
1056 that this needs to be moved into interpreter specific code. */
1059 ui_file_delete (gdb_stdout);
1060 ui_file_delete (gdb_stderr);
1063 gdb_stdtargerr = NULL;
1066 gdb_rl_callback_handler_remove ();
1067 delete_file_handler (input_fd);