Remove exception_none
[deliverable/binutils-gdb.git] / gdb / event-top.c
CommitLineData
b5a0ac70 1/* Top level stuff for GDB, the GNU debugger.
637537d0 2
42a4f53d 3 Copyright (C) 1999-2019 Free Software Foundation, Inc.
637537d0 4
b5a0ac70
SS
5 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
b5a0ac70
SS
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
371d5dec 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
b5a0ac70
SS
21
22#include "defs.h"
4de283e4 23#include "top.h"
d55e5aa6
TT
24#include "inferior.h"
25#include "infrun.h"
4de283e4
TT
26#include "target.h"
27#include "terminal.h" /* for job_control */
28#include "event-loop.h"
29#include "event-top.h"
4389a95a 30#include "interps.h"
4de283e4
TT
31#include <signal.h>
32#include "cli/cli-script.h" /* for reset_command_nest_depth */
d01a8610 33#include "main.h"
4de283e4 34#include "gdbthread.h"
d55e5aa6 35#include "observable.h"
4de283e4
TT
36#include "continuations.h"
37#include "gdbcmd.h" /* for dont_repeat() */
38#include "annotate.h"
39#include "maint.h"
40#include "common/buffer.h"
f0881b37 41#include "ser-event.h"
4de283e4 42#include "gdb_select.h"
104c1213 43
371d5dec 44/* readline include files. */
dbda9972
AC
45#include "readline/readline.h"
46#include "readline/history.h"
b5a0ac70
SS
47
48/* readline defines this. */
49#undef savestring
50
606aae8a 51static std::string top_level_prompt ();
b5a0ac70 52
371d5dec 53/* Signal handlers. */
6d318c73 54#ifdef SIGQUIT
c2c6d25f 55static void handle_sigquit (int sig);
6d318c73 56#endif
0f0b8dcd 57#ifdef SIGHUP
c2c6d25f 58static void handle_sighup (int sig);
0f0b8dcd 59#endif
c2c6d25f 60static void handle_sigfpe (int sig);
b5a0ac70
SS
61
62/* Functions to be invoked by the event loop in response to
371d5dec 63 signals. */
0f0b8dcd 64#if defined (SIGQUIT) || defined (SIGHUP)
c2c6d25f 65static void async_do_nothing (gdb_client_data);
0f0b8dcd
DJ
66#endif
67#ifdef SIGHUP
c2c6d25f 68static void async_disconnect (gdb_client_data);
0f0b8dcd 69#endif
c2c6d25f 70static void async_float_handler (gdb_client_data);
6aa899ce
PA
71#ifdef SIGTSTP
72static void async_sigtstp_handler (gdb_client_data);
0f0b8dcd 73#endif
06c868a8 74static void async_sigterm_handler (gdb_client_data arg);
b5a0ac70 75
a74e1786
PA
76/* Instead of invoking (and waiting for) readline to read the command
77 line and pass it back for processing, we use readline's alternate
78 interface, via callback functions, so that the event loop can react
79 to other event sources while we wait for input. */
b5a0ac70 80
371d5dec 81/* Important variables for the event loop. */
b5a0ac70
SS
82
83/* This is used to determine if GDB is using the readline library or
371d5dec 84 its own simplified form of readline. It is used by the asynchronous
0f71a2f6 85 form of the set editing command.
392a587b 86 ezannoni: as of 1999-04-29 I expect that this
b5a0ac70 87 variable will not be used after gdb is changed to use the event
371d5dec 88 loop as default engine, and event-top.c is merged into top.c. */
3c216924 89int set_editing_cmd_var;
b5a0ac70 90
104c1213 91/* This is used to display the notification of the completion of an
371d5dec 92 asynchronous execution command. */
104c1213
JM
93int exec_done_display_p = 0;
94
d64e57fa
PP
95/* Used by the stdin event handler to compensate for missed stdin events.
96 Setting this to a non-zero value inside an stdin callback makes the callback
97 run again. */
98int call_stdin_event_handler_again_p;
99
371d5dec 100/* Signal handling variables. */
b5a0ac70 101/* Each of these is a pointer to a function that the event loop will
371d5dec 102 invoke if the corresponding signal has received. The real signal
b5a0ac70 103 handlers mark these functions as ready to be executed and the event
371d5dec
MS
104 loop, in a later iteration, calls them. See the function
105 invoke_async_signal_handler. */
05fa9251 106static struct async_signal_handler *sigint_token;
b5a0ac70 107#ifdef SIGHUP
05fa9251 108static struct async_signal_handler *sighup_token;
b5a0ac70 109#endif
6d318c73 110#ifdef SIGQUIT
05fa9251 111static struct async_signal_handler *sigquit_token;
6d318c73 112#endif
05fa9251 113static struct async_signal_handler *sigfpe_token;
6aa899ce 114#ifdef SIGTSTP
05fa9251 115static struct async_signal_handler *sigtstp_token;
0f71a2f6 116#endif
06c868a8 117static struct async_signal_handler *async_sigterm_token;
0f71a2f6 118
3c610247 119/* This hook is called by gdb_rl_callback_read_char_wrapper after each
467d8519 120 character is processed. */
b08ee6a2 121void (*after_char_processing_hook) (void);
b5a0ac70
SS
122\f
123
89525768
PA
124/* Wrapper function for calling into the readline library. This takes
125 care of a couple things:
126
127 - The event loop expects the callback function to have a parameter,
128 while readline expects none.
129
130 - Propagation of GDB exceptions/errors thrown from INPUT_HANDLER
131 across readline requires special handling.
132
133 On the exceptions issue:
134
135 DWARF-based unwinding cannot cross code built without -fexceptions.
136 Any exception that tries to propagate through such code will fail
137 and the result is a call to std::terminate. While some ABIs, such
138 as x86-64, require all code to be built with exception tables,
139 others don't.
140
141 This is a problem when GDB calls some non-EH-aware C library code,
142 that calls into GDB again through a callback, and that GDB callback
143 code throws a C++ exception. Turns out this is exactly what
144 happens with GDB's readline callback.
145
146 In such cases, we must catch and save any C++ exception that might
147 be thrown from the GDB callback before returning to the
148 non-EH-aware code. When the non-EH-aware function itself returns
149 back to GDB, we then rethrow the original C++ exception.
150
151 In the readline case however, the right thing to do is to longjmp
152 out of the callback, rather than do a normal return -- there's no
153 way for the callback to return to readline an indication that an
154 error happened, so a normal return would have rl_callback_read_char
155 potentially continue processing further input, redisplay the
156 prompt, etc. Instead of raw setjmp/longjmp however, we use our
157 sjlj-based TRY/CATCH mechanism, which knows to handle multiple
158 levels of active setjmp/longjmp frames, needed in order to handle
159 the readline callback recursing, as happens with e.g., secondary
2693a262
PA
160 prompts / queries, through gdb_readline_wrapper. This must be
161 noexcept in order to avoid problems with mixing sjlj and
162 (sjlj-based) C++ exceptions. */
89525768 163
2693a262
PA
164static struct gdb_exception
165gdb_rl_callback_read_char_wrapper_noexcept () noexcept
c2c6d25f 166{
cc06b668 167 struct gdb_exception gdb_expt;
89525768
PA
168
169 /* C++ exceptions can't normally be thrown across readline (unless
170 it is built with -fexceptions, but it won't by default on many
171 ABIs). So we instead wrap the readline call with a sjlj-based
172 TRY/CATCH, and rethrow the GDB exception once back in GDB. */
173 TRY_SJLJ
174 {
175 rl_callback_read_char ();
176 if (after_char_processing_hook)
177 (*after_char_processing_hook) ();
178 }
179 CATCH_SJLJ (ex, RETURN_MASK_ALL)
180 {
181 gdb_expt = ex;
182 }
183 END_CATCH_SJLJ
184
2693a262
PA
185 return gdb_expt;
186}
187
188static void
189gdb_rl_callback_read_char_wrapper (gdb_client_data client_data)
190{
191 struct gdb_exception gdb_expt
192 = gdb_rl_callback_read_char_wrapper_noexcept ();
193
89525768
PA
194 /* Rethrow using the normal EH mechanism. */
195 if (gdb_expt.reason < 0)
196 throw_exception (gdb_expt);
197}
198
199/* GDB's readline callback handler. Calls the current INPUT_HANDLER,
200 and propagates GDB exceptions/errors thrown from INPUT_HANDLER back
2693a262
PA
201 across readline. See gdb_rl_callback_read_char_wrapper. This must
202 be noexcept in order to avoid problems with mixing sjlj and
203 (sjlj-based) C++ exceptions. */
89525768
PA
204
205static void
2693a262 206gdb_rl_callback_handler (char *rl) noexcept
89525768 207{
cc06b668 208 struct gdb_exception gdb_rl_expt;
a74e1786 209 struct ui *ui = current_ui;
89525768 210
a70b8144 211 try
89525768 212 {
95bc9f0b 213 ui->input_handler (gdb::unique_xmalloc_ptr<char> (rl));
89525768 214 }
230d2906 215 catch (const gdb_exception &ex)
89525768
PA
216 {
217 gdb_rl_expt = ex;
218 }
89525768
PA
219
220 /* If we caught a GDB exception, longjmp out of the readline
221 callback. There's no other way for the callback to signal to
222 readline that an error happened. A normal return would have
223 readline potentially continue processing further input, redisplay
224 the prompt, etc. (This is what GDB historically did when it was
225 a C program.) Note that since we're long jumping, local variable
226 dtors are NOT run automatically. */
227 if (gdb_rl_expt.reason < 0)
228 throw_exception_sjlj (gdb_rl_expt);
c2c6d25f
JM
229}
230
b5a0ac70 231/* Change the function to be invoked every time there is a character
371d5dec 232 ready on stdin. This is used when the user sets the editing off,
b5a0ac70 233 therefore bypassing readline, and letting gdb handle the input
c70061cf
PA
234 itself, via gdb_readline_no_editing_callback. Also it is used in
235 the opposite case in which the user sets editing on again, by
3c216924
PA
236 restoring readline handling of the input.
237
238 NOTE: this operates on input_fd, not instream. If we are reading
239 commands from a file, instream will point to the file. However, we
240 always read commands from a file with editing off. This means that
241 the 'set editing on/off' will have effect only on the interactive
242 session. */
243
244void
245change_line_handler (int editing)
b5a0ac70 246{
a74e1786
PA
247 struct ui *ui = current_ui;
248
3c216924
PA
249 /* We can only have one instance of readline, so we only allow
250 editing on the main UI. */
251 if (ui != main_ui)
252 return;
253
254 /* Don't try enabling editing if the interpreter doesn't support it
255 (e.g., MI). */
256 if (!interp_supports_command_editing (top_level_interpreter ())
257 || !interp_supports_command_editing (command_interp ()))
258 return;
c2c6d25f 259
3c216924 260 if (editing)
b5a0ac70 261 {
3c216924
PA
262 gdb_assert (ui == main_ui);
263
371d5dec 264 /* Turn on editing by using readline. */
a74e1786 265 ui->call_readline = gdb_rl_callback_read_char_wrapper;
b5a0ac70
SS
266 }
267 else
268 {
c70061cf 269 /* Turn off editing by using gdb_readline_no_editing_callback. */
3c216924
PA
270 if (ui->command_editing)
271 gdb_rl_callback_handler_remove ();
a74e1786 272 ui->call_readline = gdb_readline_no_editing_callback;
b5a0ac70 273 }
3c216924 274 ui->command_editing = editing;
b5a0ac70
SS
275}
276
d3d4baed
PA
277/* The functions below are wrappers for rl_callback_handler_remove and
278 rl_callback_handler_install that keep track of whether the callback
279 handler is installed in readline. This is necessary because after
280 handling a target event of a background execution command, we may
281 need to reinstall the callback handler if it was removed due to a
282 secondary prompt. See gdb_readline_wrapper_line. We don't
283 unconditionally install the handler for every target event because
284 that also clears the line buffer, thus installing it while the user
285 is typing would lose input. */
286
287/* Whether we've registered a callback handler with readline. */
288static int callback_handler_installed;
289
290/* See event-top.h, and above. */
291
292void
293gdb_rl_callback_handler_remove (void)
294{
3c216924
PA
295 gdb_assert (current_ui == main_ui);
296
d3d4baed
PA
297 rl_callback_handler_remove ();
298 callback_handler_installed = 0;
299}
300
301/* See event-top.h, and above. Note this wrapper doesn't have an
302 actual callback parameter because we always install
303 INPUT_HANDLER. */
304
305void
306gdb_rl_callback_handler_install (const char *prompt)
307{
3c216924
PA
308 gdb_assert (current_ui == main_ui);
309
d3d4baed
PA
310 /* Calling rl_callback_handler_install resets readline's input
311 buffer. Calling this when we were already processing input
312 therefore loses input. */
313 gdb_assert (!callback_handler_installed);
314
89525768 315 rl_callback_handler_install (prompt, gdb_rl_callback_handler);
d3d4baed
PA
316 callback_handler_installed = 1;
317}
318
319/* See event-top.h, and above. */
320
321void
322gdb_rl_callback_handler_reinstall (void)
323{
3c216924
PA
324 gdb_assert (current_ui == main_ui);
325
d3d4baed
PA
326 if (!callback_handler_installed)
327 {
328 /* Passing NULL as prompt argument tells readline to not display
329 a prompt. */
330 gdb_rl_callback_handler_install (NULL);
331 }
332}
333
ab821bc6
PA
334/* Displays the prompt. If the argument NEW_PROMPT is NULL, the
335 prompt that is displayed is the current top level prompt.
336 Otherwise, it displays whatever NEW_PROMPT is as a local/secondary
337 prompt.
338
339 This is used after each gdb command has completed, and in the
340 following cases:
341
371d5dec 342 1. When the user enters a command line which is ended by '\'
ab821bc6
PA
343 indicating that the command will continue on the next line. In
344 that case the prompt that is displayed is the empty string.
345
0f71a2f6 346 2. When the user is entering 'commands' for a breakpoint, or
371d5dec 347 actions for a tracepoint. In this case the prompt will be '>'
ab821bc6
PA
348
349 3. On prompting for pagination. */
350
b5a0ac70 351void
38bcc89d 352display_gdb_prompt (const char *new_prompt)
b5a0ac70 353{
606aae8a 354 std::string actual_gdb_prompt;
b5a0ac70 355
bd00c694
PA
356 annotate_display_prompt ();
357
16026cd7
AS
358 /* Reset the nesting depth used when trace-commands is set. */
359 reset_command_nest_depth ();
360
ab821bc6
PA
361 /* Do not call the python hook on an explicit prompt change as
362 passed to this function, as this forms a secondary/local prompt,
363 IE, displayed but not set. */
364 if (! new_prompt)
adf40b2e 365 {
3b12939d
PA
366 struct ui *ui = current_ui;
367
368 if (ui->prompt_state == PROMPTED)
369 internal_error (__FILE__, __LINE__, _("double prompt"));
370 else if (ui->prompt_state == PROMPT_BLOCKED)
d17b6f81 371 {
ab821bc6
PA
372 /* This is to trick readline into not trying to display the
373 prompt. Even though we display the prompt using this
374 function, readline still tries to do its own display if
375 we don't call rl_callback_handler_install and
376 rl_callback_handler_remove (which readline detects
377 because a global variable is not set). If readline did
378 that, it could mess up gdb signal handlers for SIGINT.
379 Readline assumes that between calls to rl_set_signals and
380 rl_clear_signals gdb doesn't do anything with the signal
381 handlers. Well, that's not the case, because when the
382 target executes we change the SIGINT signal handler. If
383 we allowed readline to display the prompt, the signal
384 handler change would happen exactly between the calls to
385 the above two functions. Calling
386 rl_callback_handler_remove(), does the job. */
387
3c216924
PA
388 if (current_ui->command_editing)
389 gdb_rl_callback_handler_remove ();
ab821bc6 390 return;
d17b6f81 391 }
3b12939d 392 else if (ui->prompt_state == PROMPT_NEEDED)
ab821bc6
PA
393 {
394 /* Display the top level prompt. */
395 actual_gdb_prompt = top_level_prompt ();
3b12939d 396 ui->prompt_state = PROMPTED;
ab821bc6 397 }
b5a0ac70 398 }
ab821bc6 399 else
606aae8a 400 actual_gdb_prompt = new_prompt;
b5a0ac70 401
3c216924 402 if (current_ui->command_editing)
b5a0ac70 403 {
d3d4baed 404 gdb_rl_callback_handler_remove ();
606aae8a 405 gdb_rl_callback_handler_install (actual_gdb_prompt.c_str ());
b5a0ac70 406 }
371d5dec 407 /* new_prompt at this point can be the top of the stack or the one
d014929c
MS
408 passed in. It can't be NULL. */
409 else
b5a0ac70
SS
410 {
411 /* Don't use a _filtered function here. It causes the assumed
412 character position to be off, since the newline we read from
413 the user is not accounted for. */
606aae8a 414 fputs_unfiltered (actual_gdb_prompt.c_str (), gdb_stdout);
b5a0ac70
SS
415 gdb_flush (gdb_stdout);
416 }
417}
418
ab821bc6
PA
419/* Return the top level prompt, as specified by "set prompt", possibly
420 overriden by the python gdb.prompt_hook hook, and then composed
606aae8a 421 with the prompt prefix and suffix (annotations). */
ab821bc6 422
606aae8a 423static std::string
ab821bc6 424top_level_prompt (void)
b5a0ac70 425{
608ff013 426 char *prompt;
b5a0ac70 427
ab821bc6
PA
428 /* Give observers a chance of changing the prompt. E.g., the python
429 `gdb.prompt_hook' is installed as an observer. */
76727919 430 gdb::observers::before_prompt.notify (get_prompt ());
ab821bc6 431
608ff013 432 prompt = get_prompt ();
b5a0ac70 433
ab821bc6 434 if (annotation_level >= 2)
b5a0ac70 435 {
ab821bc6 436 /* Prefix needs to have new line at end. */
608ff013 437 const char prefix[] = "\n\032\032pre-prompt\n";
ab821bc6
PA
438
439 /* Suffix needs to have a new line at end and \032 \032 at
440 beginning. */
608ff013 441 const char suffix[] = "\n\032\032prompt\n";
b5a0ac70 442
606aae8a 443 return std::string (prefix) + prompt + suffix;
608ff013 444 }
ab821bc6 445
606aae8a 446 return prompt;
b5a0ac70 447}
c2c6d25f 448
98d9f24e 449/* See top.h. */
73ab01a0 450
98d9f24e
PA
451struct ui *main_ui;
452struct ui *current_ui;
453struct ui *ui_list;
73ab01a0 454
a74e1786 455/* Get a pointer to the current UI's line buffer. This is used to
b69d38af
PA
456 construct a whole line of input from partial input. */
457
458static struct buffer *
459get_command_line_buffer (void)
460{
a74e1786 461 return &current_ui->line_buffer;
b69d38af
PA
462}
463
187212b3 464/* When there is an event ready on the stdin file descriptor, instead
c2c6d25f 465 of calling readline directly throught the callback function, or
c70061cf
PA
466 instead of calling gdb_readline_no_editing_callback, give gdb a
467 chance to detect errors and do something. */
468
c2c6d25f 469void
2acceee2 470stdin_event_handler (int error, gdb_client_data client_data)
c2c6d25f 471{
41fd2b0f
PA
472 struct ui *ui = (struct ui *) client_data;
473
c2c6d25f
JM
474 if (error)
475 {
07169ff7
PA
476 /* Switch to the main UI, so diagnostics always go there. */
477 current_ui = main_ui;
478
41fd2b0f 479 delete_file_handler (ui->input_fd);
07169ff7
PA
480 if (main_ui == ui)
481 {
482 /* If stdin died, we may as well kill gdb. */
483 printf_unfiltered (_("error detected on stdin\n"));
268a799a 484 quit_command ((char *) 0, 0);
07169ff7
PA
485 }
486 else
487 {
488 /* Simply delete the UI. */
895b8f30 489 delete ui;
07169ff7 490 }
c2c6d25f
JM
491 }
492 else
d64e57fa 493 {
07169ff7
PA
494 /* Switch to the UI whose input descriptor woke up the event
495 loop. */
496 current_ui = ui;
497
498 /* This makes sure a ^C immediately followed by further input is
499 always processed in that order. E.g,. with input like
500 "^Cprint 1\n", the SIGINT handler runs, marks the async
501 signal handler, and then select/poll may return with stdin
502 ready, instead of -1/EINTR. The
503 gdb.base/double-prompt-target-event-error.exp test exercises
504 this. */
d2acc30b
PA
505 QUIT;
506
d64e57fa
PP
507 do
508 {
509 call_stdin_event_handler_again_p = 0;
a74e1786 510 ui->call_readline (client_data);
07169ff7
PA
511 }
512 while (call_stdin_event_handler_again_p != 0);
d64e57fa 513 }
c2c6d25f
JM
514}
515
3eb7562a
PA
516/* See top.h. */
517
518void
519ui_register_input_event_handler (struct ui *ui)
520{
521 add_file_handler (ui->input_fd, stdin_event_handler, ui);
522}
523
524/* See top.h. */
525
526void
527ui_unregister_input_event_handler (struct ui *ui)
528{
529 delete_file_handler (ui->input_fd);
530}
531
6426a772
JM
532/* Re-enable stdin after the end of an execution command in
533 synchronous mode, or after an error from the target, and we aborted
371d5dec 534 the exec operation. */
6426a772
JM
535
536void
712af3be 537async_enable_stdin (void)
6426a772 538{
3b12939d
PA
539 struct ui *ui = current_ui;
540
541 if (ui->prompt_state == PROMPT_BLOCKED)
32c1e744 542 {
223ffa71 543 target_terminal::ours ();
3eb7562a 544 ui_register_input_event_handler (ui);
3b12939d 545 ui->prompt_state = PROMPT_NEEDED;
32c1e744 546 }
6426a772
JM
547}
548
549/* Disable reads from stdin (the console) marking the command as
371d5dec 550 synchronous. */
6426a772
JM
551
552void
553async_disable_stdin (void)
554{
3b12939d
PA
555 struct ui *ui = current_ui;
556
557 ui->prompt_state = PROMPT_BLOCKED;
3eb7562a 558 delete_file_handler (ui->input_fd);
6426a772 559}
b5a0ac70 560\f
6426a772 561
b69d38af
PA
562/* Handle a gdb command line. This function is called when
563 handle_line_of_input has concatenated one or more input lines into
564 a whole command. */
565
566void
95a6b0a1 567command_handler (const char *command)
b5a0ac70 568{
f38d3ad1 569 struct ui *ui = current_ui;
95a6b0a1 570 const char *c;
b5a0ac70 571
268a799a 572 if (ui->instream == ui->stdin_stream)
b5a0ac70 573 reinitialize_more_filter ();
b5a0ac70 574
1e3b796d 575 scoped_command_stats stat_reporter (true);
b5a0ac70 576
b69d38af
PA
577 /* Do not execute commented lines. */
578 for (c = command; *c == ' ' || *c == '\t'; c++)
579 ;
580 if (c[0] != '#')
581 {
268a799a 582 execute_command (command, ui->instream == ui->stdin_stream);
c5aa993b 583
b69d38af
PA
584 /* Do any commands attached to breakpoint we stopped at. */
585 bpstat_do_actions ();
586 }
43ff13b4
JM
587}
588
b69d38af
PA
589/* Append RL, an input line returned by readline or one of its
590 emulations, to CMD_LINE_BUFFER. Returns the command line if we
591 have a whole command line ready to be processed by the command
592 interpreter or NULL if the command line isn't complete yet (input
95bc9f0b 593 line ends in a backslash). */
b5a0ac70 594
b69d38af 595static char *
95bc9f0b 596command_line_append_input_line (struct buffer *cmd_line_buffer, const char *rl)
b5a0ac70 597{
b69d38af
PA
598 char *cmd;
599 size_t len;
b5a0ac70 600
b69d38af 601 len = strlen (rl);
b5a0ac70 602
b69d38af 603 if (len > 0 && rl[len - 1] == '\\')
b5a0ac70 604 {
b69d38af
PA
605 /* Don't copy the backslash and wait for more. */
606 buffer_grow (cmd_line_buffer, rl, len - 1);
607 cmd = NULL;
b5a0ac70 608 }
b69d38af 609 else
b5a0ac70 610 {
b69d38af
PA
611 /* Copy whole line including terminating null, and we're
612 done. */
613 buffer_grow (cmd_line_buffer, rl, len + 1);
614 cmd = cmd_line_buffer->buffer;
b5a0ac70
SS
615 }
616
b69d38af
PA
617 return cmd;
618}
b5a0ac70 619
b69d38af 620/* Handle a line of input coming from readline.
b5a0ac70 621
b69d38af
PA
622 If the read line ends with a continuation character (backslash),
623 save the partial input in CMD_LINE_BUFFER (except the backslash),
624 and return NULL. Otherwise, save the partial input and return a
625 pointer to CMD_LINE_BUFFER's buffer (null terminated), indicating a
626 whole command line is ready to be executed.
b5a0ac70 627
b69d38af 628 Returns EOF on end of file.
b5a0ac70 629
b69d38af 630 If REPEAT, handle command repetitions:
b5a0ac70 631
b69d38af
PA
632 - If the input command line is NOT empty, the command returned is
633 copied into the global 'saved_command_line' var so that it can
634 be repeated later.
d96429cd 635
b69d38af
PA
636 - OTOH, if the input command line IS empty, return the previously
637 saved command instead of the empty input line.
638*/
b5a0ac70 639
b69d38af
PA
640char *
641handle_line_of_input (struct buffer *cmd_line_buffer,
95bc9f0b
TT
642 const char *rl, int repeat,
643 const char *annotation_suffix)
b69d38af 644{
f38d3ad1 645 struct ui *ui = current_ui;
268a799a 646 int from_tty = ui->instream == ui->stdin_stream;
b69d38af
PA
647 char *p1;
648 char *cmd;
649
650 if (rl == NULL)
651 return (char *) EOF;
652
653 cmd = command_line_append_input_line (cmd_line_buffer, rl);
654 if (cmd == NULL)
655 return NULL;
b5a0ac70 656
b69d38af
PA
657 /* We have a complete command line now. Prepare for the next
658 command, but leave ownership of memory to the buffer . */
659 cmd_line_buffer->used_size = 0;
660
268a799a 661 if (from_tty && annotation_level > 1)
b5a0ac70 662 {
b69d38af
PA
663 printf_unfiltered (("\n\032\032post-"));
664 puts_unfiltered (annotation_suffix);
665 printf_unfiltered (("\n"));
666 }
667
668#define SERVER_COMMAND_PREFIX "server "
9937536c
JB
669 server_command = startswith (cmd, SERVER_COMMAND_PREFIX);
670 if (server_command)
b69d38af
PA
671 {
672 /* Note that we don't set `saved_command_line'. Between this
673 and the check in dont_repeat, this insures that repeating
674 will still do the right thing. */
675 return cmd + strlen (SERVER_COMMAND_PREFIX);
b5a0ac70
SS
676 }
677
678 /* Do history expansion if that is wished. */
268a799a 679 if (history_expansion_p && from_tty && input_interactive_p (current_ui))
b5a0ac70 680 {
b6fb1ee5 681 char *cmd_expansion;
b5a0ac70
SS
682 int expanded;
683
b6fb1ee5
PW
684 expanded = history_expand (cmd, &cmd_expansion);
685 gdb::unique_xmalloc_ptr<char> history_value (cmd_expansion);
b5a0ac70
SS
686 if (expanded)
687 {
b69d38af
PA
688 size_t len;
689
b5a0ac70 690 /* Print the changes. */
b6fb1ee5 691 printf_unfiltered ("%s\n", history_value.get ());
b5a0ac70
SS
692
693 /* If there was an error, call this function again. */
694 if (expanded < 0)
b6fb1ee5 695 return cmd;
b69d38af
PA
696
697 /* history_expand returns an allocated string. Just replace
698 our buffer with it. */
b6fb1ee5 699 len = strlen (history_value.get ());
b69d38af 700 xfree (buffer_finish (cmd_line_buffer));
b6fb1ee5 701 cmd_line_buffer->buffer = history_value.get ();
b69d38af 702 cmd_line_buffer->buffer_size = len + 1;
b6fb1ee5 703 cmd = history_value.release ();
b5a0ac70
SS
704 }
705 }
706
371d5dec 707 /* If we just got an empty line, and that is supposed to repeat the
b69d38af
PA
708 previous command, return the previously saved command. */
709 for (p1 = cmd; *p1 == ' ' || *p1 == '\t'; p1++)
710 ;
711 if (repeat && *p1 == '\0')
712 return saved_command_line;
713
714 /* Add command to history if appropriate. Note: lines consisting
715 solely of comments are also added to the command history. This
716 is useful when you type a command, and then realize you don't
717 want to execute it quite yet. You can comment out the command
718 and then later fetch it from the value history and remove the
719 '#'. The kill ring is probably better, but some people are in
720 the habit of commenting things out. */
268a799a 721 if (*cmd != '\0' && from_tty && input_interactive_p (current_ui))
b69d38af 722 gdb_add_history (cmd);
b5a0ac70 723
b69d38af
PA
724 /* Save into global buffer if appropriate. */
725 if (repeat)
b5a0ac70 726 {
b69d38af
PA
727 xfree (saved_command_line);
728 saved_command_line = xstrdup (cmd);
729 return saved_command_line;
b5a0ac70 730 }
b69d38af
PA
731 else
732 return cmd;
733}
b5a0ac70 734
b69d38af
PA
735/* Handle a complete line of input. This is called by the callback
736 mechanism within the readline library. Deal with incomplete
737 commands as well, by saving the partial input in a global
738 buffer.
b5a0ac70 739
b69d38af
PA
740 NOTE: This is the asynchronous version of the command_line_input
741 function. */
b5a0ac70 742
b69d38af 743void
95bc9f0b 744command_line_handler (gdb::unique_xmalloc_ptr<char> &&rl)
b69d38af
PA
745{
746 struct buffer *line_buffer = get_command_line_buffer ();
f38d3ad1 747 struct ui *ui = current_ui;
b69d38af 748 char *cmd;
b5a0ac70 749
95bc9f0b 750 cmd = handle_line_of_input (line_buffer, rl.get (), 1, "prompt");
b69d38af 751 if (cmd == (char *) EOF)
b5a0ac70 752 {
b69d38af
PA
753 /* stdin closed. The connection with the terminal is gone.
754 This happens at the end of a testsuite run, after Expect has
755 hung up but GDB is still alive. In such a case, we just quit
756 gdb killing the inferior program too. */
757 printf_unfiltered ("quit\n");
95a6b0a1 758 execute_command ("quit", 1);
b69d38af
PA
759 }
760 else if (cmd == NULL)
761 {
762 /* We don't have a full line yet. Print an empty prompt. */
763 display_gdb_prompt ("");
764 }
765 else
766 {
3b12939d
PA
767 ui->prompt_state = PROMPT_NEEDED;
768
b69d38af 769 command_handler (cmd);
3b12939d
PA
770
771 if (ui->prompt_state != PROMPTED)
772 display_gdb_prompt (0);
b5a0ac70 773 }
b5a0ac70
SS
774}
775
776/* Does reading of input from terminal w/o the editing features
c70061cf
PA
777 provided by the readline library. Calls the line input handler
778 once we have a whole input line. */
b5a0ac70 779
085dd6e6 780void
c70061cf 781gdb_readline_no_editing_callback (gdb_client_data client_data)
b5a0ac70
SS
782{
783 int c;
784 char *result;
187212b3 785 struct buffer line_buffer;
7be570e7 786 static int done_once = 0;
a74e1786 787 struct ui *ui = current_ui;
7be570e7 788
187212b3
PA
789 buffer_init (&line_buffer);
790
7be570e7 791 /* Unbuffer the input stream, so that, later on, the calls to fgetc
371d5dec 792 fetch only one char at the time from the stream. The fgetc's will
7be570e7 793 get up to the first newline, but there may be more chars in the
371d5dec 794 stream after '\n'. If we buffer the input and fgetc drains the
7be570e7 795 stream, getting stuff beyond the newline as well, a select, done
371d5dec 796 afterwards will not trigger. */
f38d3ad1 797 if (!done_once && !ISATTY (ui->instream))
7be570e7 798 {
f38d3ad1 799 setbuf (ui->instream, NULL);
7be570e7
JM
800 done_once = 1;
801 }
b5a0ac70 802
b5a0ac70 803 /* We still need the while loop here, even though it would seem
c70061cf
PA
804 obvious to invoke gdb_readline_no_editing_callback at every
805 character entered. If not using the readline library, the
806 terminal is in cooked mode, which sends the characters all at
807 once. Poll will notice that the input fd has changed state only
808 after enter is pressed. At this point we still need to fetch all
809 the chars entered. */
b5a0ac70
SS
810
811 while (1)
812 {
813 /* Read from stdin if we are executing a user defined command.
814 This is the right thing for prompt_for_continue, at least. */
268a799a 815 c = fgetc (ui->instream != NULL ? ui->instream : ui->stdin_stream);
b5a0ac70
SS
816
817 if (c == EOF)
818 {
187212b3
PA
819 if (line_buffer.used_size > 0)
820 {
821 /* The last line does not end with a newline. Return it, and
822 if we are called again fgetc will still return EOF and
823 we'll return NULL then. */
824 break;
825 }
826 xfree (buffer_finish (&line_buffer));
a74e1786 827 ui->input_handler (NULL);
13ce7133 828 return;
b5a0ac70
SS
829 }
830
831 if (c == '\n')
b5a0ac70 832 {
187212b3
PA
833 if (line_buffer.used_size > 0
834 && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
835 line_buffer.used_size--;
b5a0ac70
SS
836 break;
837 }
b5a0ac70 838
187212b3 839 buffer_grow_char (&line_buffer, c);
b5a0ac70
SS
840 }
841
187212b3
PA
842 buffer_grow_char (&line_buffer, '\0');
843 result = buffer_finish (&line_buffer);
95bc9f0b 844 ui->input_handler (gdb::unique_xmalloc_ptr<char> (result));
b5a0ac70
SS
845}
846\f
847
f0881b37
PA
848/* The serial event associated with the QUIT flag. set_quit_flag sets
849 this, and check_quit_flag clears it. Used by interruptible_select
850 to be able to do interruptible I/O with no race with the SIGINT
851 handler. */
852static struct serial_event *quit_serial_event;
853
b5a0ac70 854/* Initialization of signal handlers and tokens. There is a function
371d5dec 855 handle_sig* for each of the signals GDB cares about. Specifically:
b5a0ac70
SS
856 SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These
857 functions are the actual signal handlers associated to the signals
858 via calls to signal(). The only job for these functions is to
859 enqueue the appropriate event/procedure with the event loop. Such
371d5dec 860 procedures are the old signal handlers. The event loop will take
b5a0ac70 861 care of invoking the queued procedures to perform the usual tasks
371d5dec 862 associated with the reception of the signal. */
392a587b 863/* NOTE: 1999-04-30 This is the asynchronous version of init_signals.
b5a0ac70 864 init_signals will become obsolete as we move to have to event loop
371d5dec 865 as the default for gdb. */
b5a0ac70 866void
c2c6d25f 867async_init_signals (void)
c5aa993b 868{
5cc3ce8b
PA
869 initialize_async_signal_handlers ();
870
f0881b37
PA
871 quit_serial_event = make_serial_event ();
872
b5a0ac70
SS
873 signal (SIGINT, handle_sigint);
874 sigint_token =
0f71a2f6 875 create_async_signal_handler (async_request_quit, NULL);
a7266fef 876 signal (SIGTERM, handle_sigterm);
06c868a8
JK
877 async_sigterm_token
878 = create_async_signal_handler (async_sigterm_handler, NULL);
b5a0ac70
SS
879
880 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
881 to the inferior and breakpoints will be ignored. */
882#ifdef SIGTRAP
883 signal (SIGTRAP, SIG_DFL);
884#endif
885
6d318c73 886#ifdef SIGQUIT
b5a0ac70
SS
887 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
888 passed to the inferior, which we don't want. It would be
889 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
890 on BSD4.3 systems using vfork, that can affect the
891 GDB process as well as the inferior (the signal handling tables
892 might be in memory, shared between the two). Since we establish
893 a handler for SIGQUIT, when we call exec it will set the signal
894 to SIG_DFL for us. */
895 signal (SIGQUIT, handle_sigquit);
896 sigquit_token =
0f71a2f6 897 create_async_signal_handler (async_do_nothing, NULL);
6d318c73 898#endif
b5a0ac70
SS
899#ifdef SIGHUP
900 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
901 sighup_token =
0f71a2f6 902 create_async_signal_handler (async_disconnect, NULL);
b5a0ac70
SS
903 else
904 sighup_token =
0f71a2f6 905 create_async_signal_handler (async_do_nothing, NULL);
b5a0ac70
SS
906#endif
907 signal (SIGFPE, handle_sigfpe);
908 sigfpe_token =
0f71a2f6 909 create_async_signal_handler (async_float_handler, NULL);
b5a0ac70 910
6aa899ce 911#ifdef SIGTSTP
0f71a2f6 912 sigtstp_token =
6aa899ce 913 create_async_signal_handler (async_sigtstp_handler, NULL);
0f71a2f6 914#endif
0f71a2f6
JM
915}
916
f0881b37
PA
917/* See defs.h. */
918
919void
920quit_serial_event_set (void)
921{
922 serial_event_set (quit_serial_event);
923}
924
925/* See defs.h. */
926
927void
928quit_serial_event_clear (void)
929{
930 serial_event_clear (quit_serial_event);
931}
932
933/* Return the selectable file descriptor of the serial event
934 associated with the quit flag. */
935
936static int
937quit_serial_event_fd (void)
938{
939 return serial_event_fd (quit_serial_event);
940}
941
048094ac
PA
942/* See defs.h. */
943
944void
945default_quit_handler (void)
946{
947 if (check_quit_flag ())
948 {
223ffa71 949 if (target_terminal::is_ours ())
048094ac
PA
950 quit ();
951 else
952 target_pass_ctrlc ();
953 }
954}
955
956/* See defs.h. */
957quit_handler_ftype *quit_handler = default_quit_handler;
958
f0881b37
PA
959/* Handle a SIGINT. */
960
c5aa993b 961void
c2c6d25f 962handle_sigint (int sig)
b5a0ac70
SS
963{
964 signal (sig, handle_sigint);
965
5f960e00
FF
966 /* We could be running in a loop reading in symfiles or something so
967 it may be quite a while before we get back to the event loop. So
371d5dec 968 set quit_flag to 1 here. Then if QUIT is called before we get to
5f960e00 969 the event loop, we will unwind as expected. */
522002f9 970 set_quit_flag ();
5f960e00 971
585a46a2
PA
972 /* In case nothing calls QUIT before the event loop is reached, the
973 event loop handles it. */
974 mark_async_signal_handler (sigint_token);
b5a0ac70
SS
975}
976
f0881b37
PA
977/* See gdb_select.h. */
978
979int
980interruptible_select (int n,
981 fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
982 struct timeval *timeout)
983{
984 fd_set my_readfds;
985 int fd;
986 int res;
987
988 if (readfds == NULL)
989 {
990 readfds = &my_readfds;
991 FD_ZERO (&my_readfds);
992 }
993
994 fd = quit_serial_event_fd ();
995 FD_SET (fd, readfds);
996 if (n <= fd)
997 n = fd + 1;
998
999 do
1000 {
1001 res = gdb_select (n, readfds, writefds, exceptfds, timeout);
1002 }
1003 while (res == -1 && errno == EINTR);
1004
1005 if (res == 1 && FD_ISSET (fd, readfds))
1006 {
1007 errno = EINTR;
1008 return -1;
1009 }
1010 return res;
1011}
1012
06c868a8
JK
1013/* Handle GDB exit upon receiving SIGTERM if target_can_async_p (). */
1014
1015static void
1016async_sigterm_handler (gdb_client_data arg)
1017{
268a799a 1018 quit_force (NULL, 0);
06c868a8
JK
1019}
1020
1021/* See defs.h. */
1022volatile int sync_quit_force_run;
1023
a7266fef
AS
1024/* Quit GDB if SIGTERM is received.
1025 GDB would quit anyway, but this way it will clean up properly. */
1026void
1027handle_sigterm (int sig)
1028{
1029 signal (sig, handle_sigterm);
06c868a8 1030
077836f7
PP
1031 sync_quit_force_run = 1;
1032 set_quit_flag ();
1033
1034 mark_async_signal_handler (async_sigterm_token);
a7266fef
AS
1035}
1036
371d5dec 1037/* Do the quit. All the checks have been done by the caller. */
c5aa993b 1038void
c2c6d25f 1039async_request_quit (gdb_client_data arg)
b5a0ac70 1040{
5f960e00 1041 /* If the quit_flag has gotten reset back to 0 by the time we get
4ac94eda
FF
1042 back here, that means that an exception was thrown to unwind the
1043 current command before we got back to the event loop. So there
522002f9 1044 is no reason to call quit again here. */
048094ac 1045 QUIT;
b5a0ac70
SS
1046}
1047
6d318c73 1048#ifdef SIGQUIT
371d5dec
MS
1049/* Tell the event loop what to do if SIGQUIT is received.
1050 See event-signal.c. */
c5aa993b 1051static void
c2c6d25f 1052handle_sigquit (int sig)
b5a0ac70 1053{
f6fbab7d 1054 mark_async_signal_handler (sigquit_token);
b5a0ac70
SS
1055 signal (sig, handle_sigquit);
1056}
6d318c73 1057#endif
b5a0ac70 1058
0f0b8dcd
DJ
1059#if defined (SIGQUIT) || defined (SIGHUP)
1060/* Called by the event loop in response to a SIGQUIT or an
1061 ignored SIGHUP. */
c5aa993b 1062static void
c2c6d25f 1063async_do_nothing (gdb_client_data arg)
b5a0ac70 1064{
371d5dec 1065 /* Empty function body. */
b5a0ac70 1066}
0f0b8dcd 1067#endif
b5a0ac70
SS
1068
1069#ifdef SIGHUP
371d5dec
MS
1070/* Tell the event loop what to do if SIGHUP is received.
1071 See event-signal.c. */
c5aa993b 1072static void
fba45db2 1073handle_sighup (int sig)
b5a0ac70 1074{
f6fbab7d 1075 mark_async_signal_handler (sighup_token);
b5a0ac70
SS
1076 signal (sig, handle_sighup);
1077}
1078
371d5dec 1079/* Called by the event loop to process a SIGHUP. */
c5aa993b 1080static void
c2c6d25f 1081async_disconnect (gdb_client_data arg)
b5a0ac70 1082{
b2cd6b29 1083
a70b8144 1084 try
b2cd6b29
JM
1085 {
1086 quit_cover ();
1087 }
1088
230d2906 1089 catch (const gdb_exception &exception)
b2cd6b29
JM
1090 {
1091 fputs_filtered ("Could not kill the program being debugged",
1092 gdb_stderr);
1093 exception_print (gdb_stderr, exception);
1094 }
1095
a70b8144 1096 try
b2cd6b29 1097 {
460014f5 1098 pop_all_targets ();
b2cd6b29 1099 }
230d2906 1100 catch (const gdb_exception &exception)
492d29ea
PA
1101 {
1102 }
b2cd6b29 1103
371d5dec 1104 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
ec4dfccf 1105 raise (SIGHUP);
b5a0ac70
SS
1106}
1107#endif
1108
6aa899ce 1109#ifdef SIGTSTP
c5aa993b 1110void
6aa899ce 1111handle_sigtstp (int sig)
0f71a2f6 1112{
f6fbab7d 1113 mark_async_signal_handler (sigtstp_token);
6aa899ce 1114 signal (sig, handle_sigtstp);
0f71a2f6
JM
1115}
1116
1117static void
6aa899ce 1118async_sigtstp_handler (gdb_client_data arg)
0f71a2f6 1119{
ab821bc6 1120 char *prompt = get_prompt ();
d7f9d729 1121
0f71a2f6 1122 signal (SIGTSTP, SIG_DFL);
2acceee2
JM
1123#if HAVE_SIGPROCMASK
1124 {
1125 sigset_t zero;
46711df8 1126
2acceee2
JM
1127 sigemptyset (&zero);
1128 sigprocmask (SIG_SETMASK, &zero, 0);
1129 }
46711df8 1130#elif HAVE_SIGSETMASK
0f71a2f6 1131 sigsetmask (0);
2acceee2 1132#endif
ec4dfccf 1133 raise (SIGTSTP);
6aa899ce 1134 signal (SIGTSTP, handle_sigtstp);
0f71a2f6
JM
1135 printf_unfiltered ("%s", prompt);
1136 gdb_flush (gdb_stdout);
1137
371d5dec
MS
1138 /* Forget about any previous command -- null line now will do
1139 nothing. */
0f71a2f6
JM
1140 dont_repeat ();
1141}
6aa899ce 1142#endif /* SIGTSTP */
0f71a2f6 1143
371d5dec
MS
1144/* Tell the event loop what to do if SIGFPE is received.
1145 See event-signal.c. */
c5aa993b 1146static void
c2c6d25f 1147handle_sigfpe (int sig)
b5a0ac70 1148{
f6fbab7d 1149 mark_async_signal_handler (sigfpe_token);
b5a0ac70
SS
1150 signal (sig, handle_sigfpe);
1151}
1152
371d5dec 1153/* Event loop will call this functin to process a SIGFPE. */
c5aa993b 1154static void
c2c6d25f 1155async_float_handler (gdb_client_data arg)
b5a0ac70 1156{
371d5dec
MS
1157 /* This message is based on ANSI C, section 4.7. Note that integer
1158 divide by zero causes this, so "float" is a misnomer. */
8a3fe4f8 1159 error (_("Erroneous arithmetic operation."));
b5a0ac70 1160}
b5a0ac70
SS
1161\f
1162
0f71a2f6 1163/* Set things up for readline to be invoked via the alternate
3c610247
PA
1164 interface, i.e. via a callback function
1165 (gdb_rl_callback_read_char), and hook up instream to the event
1166 loop. */
1167
0f71a2f6 1168void
3c216924 1169gdb_setup_readline (int editing)
0f71a2f6 1170{
a74e1786
PA
1171 struct ui *ui = current_ui;
1172
362646f5
AC
1173 /* This function is a noop for the sync case. The assumption is
1174 that the sync setup is ALL done in gdb_init, and we would only
1175 mess it up here. The sync stuff should really go away over
1176 time. */
1a088d06 1177 if (!batch_silent)
d7e74731
PA
1178 gdb_stdout = new stdio_file (ui->outstream);
1179 gdb_stderr = new stderr_file (ui->errstream);
362646f5
AC
1180 gdb_stdlog = gdb_stderr; /* for moment */
1181 gdb_stdtarg = gdb_stderr; /* for moment */
8d4d924b 1182 gdb_stdtargerr = gdb_stderr; /* for moment */
362646f5 1183
3c216924
PA
1184 /* If the input stream is connected to a terminal, turn on editing.
1185 However, that is only allowed on the main UI, as we can only have
1186 one instance of readline. */
1187 if (ISATTY (ui->instream) && editing && ui == main_ui)
9e0b60a8 1188 {
371d5dec 1189 /* Tell gdb that we will be using the readline library. This
362646f5
AC
1190 could be overwritten by a command in .gdbinit like 'set
1191 editing on' or 'off'. */
3c216924
PA
1192 ui->command_editing = 1;
1193
362646f5
AC
1194 /* When a character is detected on instream by select or poll,
1195 readline will be invoked via this callback function. */
a74e1786 1196 ui->call_readline = gdb_rl_callback_read_char_wrapper;
3c216924
PA
1197
1198 /* Tell readline to use the same input stream that gdb uses. */
1199 rl_instream = ui->instream;
9e0b60a8 1200 }
362646f5
AC
1201 else
1202 {
3c216924 1203 ui->command_editing = 0;
a74e1786 1204 ui->call_readline = gdb_readline_no_editing_callback;
362646f5 1205 }
362646f5 1206
41fd2b0f
PA
1207 /* Now create the event source for this UI's input file descriptor.
1208 Another source is going to be the target program (inferior), but
1209 that must be registered only when it actually exists (I.e. after
1210 we say 'run' or after we connect to a remote target. */
3eb7562a 1211 ui_register_input_event_handler (ui);
0f71a2f6 1212}
cee6ddeb 1213
7d5b6fdd
EZ
1214/* Disable command input through the standard CLI channels. Used in
1215 the suspend proc for interpreters that use the standard gdb readline
1216 interface, like the cli & the mi. */
3c216924 1217
7d5b6fdd
EZ
1218void
1219gdb_disable_readline (void)
1220{
41fd2b0f
PA
1221 struct ui *ui = current_ui;
1222
362646f5
AC
1223 /* FIXME - It is too heavyweight to delete and remake these every
1224 time you run an interpreter that needs readline. It is probably
1225 better to have the interpreters cache these, which in turn means
1226 that this needs to be moved into interpreter specific code. */
7d5b6fdd
EZ
1227
1228#if 0
362646f5
AC
1229 ui_file_delete (gdb_stdout);
1230 ui_file_delete (gdb_stderr);
1231 gdb_stdlog = NULL;
1232 gdb_stdtarg = NULL;
8d4d924b 1233 gdb_stdtargerr = NULL;
7d5b6fdd
EZ
1234#endif
1235
3c216924
PA
1236 if (ui->command_editing)
1237 gdb_rl_callback_handler_remove ();
41fd2b0f 1238 delete_file_handler (ui->input_fd);
7d5b6fdd 1239}
This page took 2.148864 seconds and 4 git commands to generate.