]>
Commit | Line | Data |
---|---|---|
b5a0ac70 SS |
1 | /* Top level stuff for GDB, the GNU debugger. |
2 | Copyright 1999 Free Software Foundation, Inc. | |
3 | Written by Elena Zannoni <[email protected]> of Cygnus Solutions. | |
4 | ||
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2 of the License, or | |
10 | (at your option) any later version. | |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with this program; if not, write to the Free Software | |
c5aa993b JM |
19 | Foundation, Inc., 59 Temple Place - Suite 330, |
20 | Boston, MA 02111-1307, USA. */ | |
b5a0ac70 SS |
21 | |
22 | #include "defs.h" | |
0f71a2f6 | 23 | #include "top.h" |
b5a0ac70 | 24 | #include "inferior.h" |
c5aa993b | 25 | #include "terminal.h" /* for job_control */ |
9e0b60a8 JM |
26 | #include <signal.h> |
27 | #include "event-loop.h" | |
b5a0ac70 SS |
28 | |
29 | /* readline include files */ | |
30 | #include <readline/readline.h> | |
31 | #include <readline/history.h> | |
32 | ||
33 | /* readline defines this. */ | |
34 | #undef savestring | |
35 | ||
9e0b60a8 | 36 | extern void _initialize_event_loop PARAMS ((void)); |
b5a0ac70 SS |
37 | |
38 | static void command_line_handler PARAMS ((char *)); | |
43ff13b4 | 39 | static void command_line_handler_continuation PARAMS ((struct continuation_arg *)); |
085dd6e6 | 40 | void gdb_readline2 PARAMS ((void)); |
43ff13b4 JM |
41 | void pop_prompt PARAMS ((void)); |
42 | void push_prompt PARAMS ((char *, char *, char *)); | |
392a587b JM |
43 | static void change_line_handler PARAMS ((void)); |
44 | static void change_annotation_level PARAMS ((void)); | |
45 | static void command_handler PARAMS ((char *)); | |
b5a0ac70 SS |
46 | |
47 | /* Signal handlers. */ | |
43ff13b4 | 48 | void handle_sigint PARAMS ((int)); |
0f71a2f6 JM |
49 | static void handle_sigquit PARAMS ((int)); |
50 | static void handle_sighup PARAMS ((int)); | |
51 | static void handle_sigfpe PARAMS ((int)); | |
52 | static void handle_sigwinch PARAMS ((int)); | |
53 | /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */ | |
54 | #ifndef STOP_SIGNAL | |
55 | #ifdef SIGTSTP | |
56 | #define STOP_SIGNAL SIGTSTP | |
57 | void handle_stop_sig PARAMS ((int)); | |
58 | #endif | |
59 | #endif | |
b5a0ac70 SS |
60 | |
61 | /* Functions to be invoked by the event loop in response to | |
62 | signals. */ | |
0f71a2f6 JM |
63 | void async_request_quit PARAMS ((gdb_client_data)); |
64 | static void async_do_nothing PARAMS ((gdb_client_data)); | |
65 | static void async_disconnect PARAMS ((gdb_client_data)); | |
66 | static void async_float_handler PARAMS ((gdb_client_data)); | |
67 | static void async_stop_sig PARAMS ((gdb_client_data)); | |
b5a0ac70 SS |
68 | |
69 | /* If this definition isn't overridden by the header files, assume | |
70 | that isatty and fileno exist on this system. */ | |
71 | #ifndef ISATTY | |
72 | #define ISATTY(FP) (isatty (fileno (FP))) | |
73 | #endif | |
74 | ||
b5a0ac70 SS |
75 | /* Readline offers an alternate interface, via callback |
76 | functions. These are all included in the file callback.c in the | |
77 | readline distribution. This file provides (mainly) a function, which | |
78 | the event loop uses as callback (i.e. event handler) whenever an event | |
79 | is detected on the standard input file descriptor. | |
80 | readline_callback_read_char is called (by the GDB event loop) whenever | |
81 | there is a new character ready on the input stream. This function | |
82 | incrementally builds a buffer internal to readline where it | |
83 | accumulates the line read up to the point of invocation. In the | |
84 | special case in which the character read is newline, the function | |
85 | invokes a GDB supplied callback routine, which does the processing of | |
86 | a full command line. This latter routine is the asynchronous analog | |
87 | of the old command_line_input in gdb. Instead of invoking (and waiting | |
88 | for) readline to read the command line and pass it back to | |
89 | command_loop for processing, the new command_line_handler function has | |
90 | the command line already available as its parameter. INPUT_HANDLER is | |
91 | to be set to the function that readline will invoke when a complete | |
92 | line of input is ready. CALL_READLINE is to be set to the function | |
93 | that readline offers as callback to the event_loop. */ | |
94 | ||
95 | void (*input_handler) PARAMS ((char *)); | |
96 | void (*call_readline) PARAMS ((void)); | |
97 | ||
98 | /* Important variables for the event loop. */ | |
99 | ||
100 | /* This is used to determine if GDB is using the readline library or | |
101 | its own simplified form of readline. It is used by the asynchronous | |
0f71a2f6 | 102 | form of the set editing command. |
392a587b | 103 | ezannoni: as of 1999-04-29 I expect that this |
b5a0ac70 SS |
104 | variable will not be used after gdb is changed to use the event |
105 | loop as default engine, and event-top.c is merged into top.c. */ | |
106 | int async_command_editing_p; | |
107 | ||
108 | /* This variable contains the new prompt that the user sets with the | |
109 | set prompt command. */ | |
110 | char *new_async_prompt; | |
111 | ||
112 | /* This is the annotation suffix that will be used when the | |
113 | annotation_level is 2. */ | |
114 | char *async_annotation_suffix; | |
115 | ||
116 | /* This is the file descriptor for the input stream that GDB uses to | |
117 | read commands from. */ | |
118 | int input_fd; | |
119 | ||
120 | /* This is the prompt stack. Prompts will be pushed on the stack as | |
121 | needed by the different 'kinds' of user inputs GDB is asking | |
122 | for. See event-loop.h. */ | |
123 | struct prompts the_prompts; | |
124 | ||
125 | /* signal handling variables */ | |
126 | /* Each of these is a pointer to a function that the event loop will | |
127 | invoke if the corresponding signal has received. The real signal | |
128 | handlers mark these functions as ready to be executed and the event | |
129 | loop, in a later iteration, calls them. See the function | |
130 | invoke_async_signal_handler. */ | |
0f71a2f6 | 131 | PTR sigint_token; |
b5a0ac70 | 132 | #ifdef SIGHUP |
0f71a2f6 | 133 | PTR sighup_token; |
b5a0ac70 | 134 | #endif |
0f71a2f6 JM |
135 | PTR sigquit_token; |
136 | PTR sigfpe_token; | |
b5a0ac70 | 137 | #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER) |
0f71a2f6 | 138 | PTR sigwinch_token; |
b5a0ac70 | 139 | #endif |
0f71a2f6 JM |
140 | #ifdef STOP_SIGNAL |
141 | PTR sigtstp_token; | |
142 | #endif | |
143 | ||
144 | void mark_async_signal_handler_wrapper PARAMS ((void *)); | |
b5a0ac70 SS |
145 | |
146 | /* Structure to save a partially entered command. This is used when | |
147 | the user types '\' at the end of a command line. This is necessary | |
148 | because each line of input is handled by a different call to | |
149 | command_line_handler, and normally there is no state retained | |
150 | between different calls. */ | |
151 | int more_to_come = 0; | |
152 | ||
153 | struct readline_input_state | |
154 | { | |
155 | char *linebuffer; | |
156 | char *linebuffer_ptr; | |
157 | } | |
158 | readline_input_state; | |
159 | \f | |
160 | ||
161 | /* Initialize all the necessary variables, start the event loop, | |
085dd6e6 | 162 | register readline, and stdin, start the loop. */ |
b5a0ac70 | 163 | void |
085dd6e6 | 164 | cli_command_loop () |
b5a0ac70 | 165 | { |
0f71a2f6 JM |
166 | int length; |
167 | char *a_prompt; | |
9e0b60a8 | 168 | char *gdb_prompt = get_prompt (); |
b5a0ac70 | 169 | |
0f71a2f6 JM |
170 | /* If we are using readline, set things up and display the first |
171 | prompt, otherwise just print the prompt. */ | |
172 | if (async_command_editing_p) | |
173 | { | |
174 | /* Tell readline what the prompt to display is and what function it | |
c5aa993b JM |
175 | will need to call after a whole line is read. This also displays |
176 | the first prompt. */ | |
9e0b60a8 | 177 | length = strlen (PREFIX (0)) + strlen (gdb_prompt) + strlen (SUFFIX (0)) + 1; |
0f71a2f6 JM |
178 | a_prompt = (char *) xmalloc (length); |
179 | strcpy (a_prompt, PREFIX (0)); | |
9e0b60a8 | 180 | strcat (a_prompt, gdb_prompt); |
0f71a2f6 JM |
181 | strcat (a_prompt, SUFFIX (0)); |
182 | rl_callback_handler_install (a_prompt, input_handler); | |
183 | } | |
184 | else | |
185 | display_gdb_prompt (0); | |
b5a0ac70 | 186 | |
085dd6e6 JM |
187 | /* Now it's time to start the event loop. */ |
188 | start_event_loop (); | |
b5a0ac70 SS |
189 | } |
190 | ||
191 | /* Change the function to be invoked every time there is a character | |
192 | ready on stdin. This is used when the user sets the editing off, | |
193 | therefore bypassing readline, and letting gdb handle the input | |
194 | itself, via gdb_readline2. Also it is used in the opposite case in | |
195 | which the user sets editing on again, by restoring readline | |
196 | handling of the input. */ | |
392a587b | 197 | static void |
b5a0ac70 SS |
198 | change_line_handler () |
199 | { | |
200 | if (async_command_editing_p) | |
201 | { | |
202 | /* Turn on editing by using readline. */ | |
203 | call_readline = rl_callback_read_char; | |
0f71a2f6 | 204 | input_handler = command_line_handler; |
b5a0ac70 SS |
205 | } |
206 | else | |
207 | { | |
208 | /* Turn off editing by using gdb_readline2. */ | |
209 | rl_callback_handler_remove (); | |
210 | call_readline = gdb_readline2; | |
0f71a2f6 JM |
211 | |
212 | /* Set up the command handler as well, in case we are called as | |
c5aa993b | 213 | first thing from .gdbinit. */ |
0f71a2f6 | 214 | input_handler = command_line_handler; |
b5a0ac70 SS |
215 | } |
216 | ||
217 | /* To tell the event loop to change the handler associated with the | |
218 | input file descriptor, we need to create a new event source, | |
219 | corresponding to the same fd, but with a new event handler | |
220 | function. */ | |
085dd6e6 JM |
221 | /* NOTE: this operates on input_fd, not instream. If we are reading |
222 | commands from a file, instream will point to the file. However in | |
223 | async mode, we always read commands from a file with editing | |
224 | off. This means that the 'set editing on/off' will have effect | |
225 | only on the interactive session. */ | |
b5a0ac70 | 226 | delete_file_handler (input_fd); |
085dd6e6 | 227 | add_file_handler (input_fd, (file_handler_func *) call_readline, 0); |
b5a0ac70 SS |
228 | } |
229 | ||
230 | /* Displays the prompt. The prompt that is displayed is the current | |
231 | top of the prompt stack, if the argument NEW_PROMPT is | |
232 | 0. Otherwise, it displays whatever NEW_PROMPT is. This is used | |
233 | after each gdb command has completed, and in the following cases: | |
0f71a2f6 JM |
234 | 1. when the user enters a command line which is ended by '\' |
235 | indicating that the command will continue on the next line. | |
b5a0ac70 | 236 | In that case the prompt that is displayed is the empty string. |
0f71a2f6 JM |
237 | 2. When the user is entering 'commands' for a breakpoint, or |
238 | actions for a tracepoint. In this case the prompt will be '>' | |
239 | 3. Other???? | |
b5a0ac70 SS |
240 | FIXME: 2. & 3. not implemented yet for async. */ |
241 | void | |
242 | display_gdb_prompt (new_prompt) | |
243 | char *new_prompt; | |
244 | { | |
245 | int prompt_length = 0; | |
c5aa993b | 246 | char *gdb_prompt = get_prompt (); |
b5a0ac70 | 247 | |
adf40b2e JM |
248 | |
249 | if (target_executing && sync_execution) | |
250 | { | |
251 | /* This is to trick readline into not trying to display the | |
252 | prompt. Even though we display the prompt using this | |
253 | function, readline still tries to do its own display if we | |
254 | don't call rl_callback_handler_install and | |
255 | rl_callback_handler_remove (which readline detects because a | |
256 | global variable is not set). If readline did that, it could | |
257 | mess up gdb signal handlers for SIGINT. Readline assumes | |
258 | that between calls to rl_set_signals and rl_clear_signals gdb | |
259 | doesn't do anything with the signal handlers. Well, that's | |
260 | not the case, because when the target executes we change the | |
261 | SIGINT signal handler. If we allowed readline to display the | |
262 | prompt, the signal handler change would happen exactly | |
263 | between the calls to the above two functions. | |
264 | Calling rl_callback_handler_remove(), does the job. */ | |
265 | ||
266 | rl_callback_handler_remove (); | |
267 | return; | |
268 | } | |
269 | ||
b5a0ac70 SS |
270 | if (!new_prompt) |
271 | { | |
272 | /* Just use the top of the prompt stack. */ | |
273 | prompt_length = strlen (PREFIX (0)) + | |
274 | strlen (SUFFIX (0)) + | |
9e0b60a8 | 275 | strlen (gdb_prompt) + 1; |
b5a0ac70 SS |
276 | |
277 | new_prompt = (char *) alloca (prompt_length); | |
278 | ||
279 | /* Prefix needs to have new line at end. */ | |
280 | strcpy (new_prompt, PREFIX (0)); | |
9e0b60a8 | 281 | strcat (new_prompt, gdb_prompt); |
b5a0ac70 SS |
282 | /* Suffix needs to have a new line at end and \032 \032 at |
283 | beginning. */ | |
284 | strcat (new_prompt, SUFFIX (0)); | |
285 | } | |
286 | ||
287 | if (async_command_editing_p) | |
288 | { | |
289 | rl_callback_handler_remove (); | |
290 | rl_callback_handler_install (new_prompt, input_handler); | |
291 | } | |
adf40b2e | 292 | /* new_prompt at this point can be the top of the stack or the one passed in */ |
b5a0ac70 SS |
293 | else if (new_prompt) |
294 | { | |
295 | /* Don't use a _filtered function here. It causes the assumed | |
296 | character position to be off, since the newline we read from | |
297 | the user is not accounted for. */ | |
298 | fputs_unfiltered (new_prompt, gdb_stdout); | |
299 | ||
300 | #ifdef MPW | |
301 | /* Move to a new line so the entered line doesn't have a prompt | |
302 | on the front of it. */ | |
303 | fputs_unfiltered ("\n", gdb_stdout); | |
304 | #endif /* MPW */ | |
305 | gdb_flush (gdb_stdout); | |
306 | } | |
307 | } | |
308 | ||
309 | /* Used when the user requests a different annotation level, with | |
310 | 'set annotate'. It pushes a new prompt (with prefix and suffix) on top | |
311 | of the prompt stack, if the annotation level desired is 2, otherwise | |
312 | it pops the top of the prompt stack when we want the annotation level | |
adf40b2e | 313 | to be the normal ones (1 or 0). */ |
392a587b | 314 | static void |
b5a0ac70 SS |
315 | change_annotation_level () |
316 | { | |
317 | char *prefix, *suffix; | |
318 | ||
319 | if (!PREFIX (0) || !PROMPT (0) || !SUFFIX (0)) | |
320 | { | |
321 | /* The prompt stack has not been initialized to "", we are | |
322 | using gdb w/o the --async switch */ | |
323 | warning ("Command has same effect as set annotate"); | |
324 | return; | |
325 | } | |
326 | ||
327 | if (annotation_level > 1) | |
328 | { | |
329 | if (!strcmp (PREFIX (0), "") && !strcmp (SUFFIX (0), "")) | |
330 | { | |
331 | /* Push a new prompt if the previous annotation_level was not >1. */ | |
332 | prefix = (char *) alloca (strlen (async_annotation_suffix) + 10); | |
333 | strcpy (prefix, "\n\032\032pre-"); | |
334 | strcat (prefix, async_annotation_suffix); | |
335 | strcat (prefix, "\n"); | |
336 | ||
337 | suffix = (char *) alloca (strlen (async_annotation_suffix) + 6); | |
338 | strcpy (suffix, "\n\032\032"); | |
339 | strcat (suffix, async_annotation_suffix); | |
340 | strcat (suffix, "\n"); | |
341 | ||
342 | push_prompt (prefix, (char *) 0, suffix); | |
343 | } | |
344 | } | |
345 | else | |
346 | { | |
347 | if (strcmp (PREFIX (0), "") && strcmp (SUFFIX (0), "")) | |
348 | { | |
349 | /* Pop the top of the stack, we are going back to annotation < 1. */ | |
350 | pop_prompt (); | |
351 | } | |
352 | } | |
353 | } | |
354 | ||
355 | /* Pushes a new prompt on the prompt stack. Each prompt has three | |
356 | parts: prefix, prompt, suffix. Usually prefix and suffix are empty | |
357 | strings, except when the annotation level is 2. Memory is allocated | |
358 | within savestring for the new prompt. */ | |
43ff13b4 | 359 | void |
b5a0ac70 SS |
360 | push_prompt (prefix, prompt, suffix) |
361 | char *prefix; | |
362 | char *prompt; | |
363 | char *suffix; | |
364 | { | |
365 | the_prompts.top++; | |
366 | PREFIX (0) = savestring (prefix, strlen (prefix)); | |
367 | ||
43ff13b4 JM |
368 | /* Note that this function is used by the set annotate 2 |
369 | command. This is why we take care of saving the old prompt | |
370 | in case a new one is not specified. */ | |
b5a0ac70 SS |
371 | if (prompt) |
372 | PROMPT (0) = savestring (prompt, strlen (prompt)); | |
373 | else | |
374 | PROMPT (0) = savestring (PROMPT (-1), strlen (PROMPT (-1))); | |
375 | ||
376 | SUFFIX (0) = savestring (suffix, strlen (suffix)); | |
377 | } | |
378 | ||
379 | /* Pops the top of the prompt stack, and frees the memory allocated for it. */ | |
43ff13b4 | 380 | void |
b5a0ac70 SS |
381 | pop_prompt () |
382 | { | |
43ff13b4 JM |
383 | /* If we are not during a 'synchronous' execution command, in which |
384 | case, the top prompt would be empty. */ | |
385 | if (strcmp (PROMPT (0), "")) | |
386 | /* This is for the case in which the prompt is set while the | |
387 | annotation level is 2. The top prompt will be changed, but when | |
388 | we return to annotation level < 2, we want that new prompt to be | |
389 | in effect, until the user does another 'set prompt'. */ | |
390 | if (strcmp (PROMPT (0), PROMPT (-1))) | |
391 | { | |
392 | free (PROMPT (-1)); | |
393 | PROMPT (-1) = savestring (PROMPT (0), strlen (PROMPT (0))); | |
394 | } | |
b5a0ac70 SS |
395 | |
396 | free (PREFIX (0)); | |
397 | free (PROMPT (0)); | |
398 | free (SUFFIX (0)); | |
399 | the_prompts.top--; | |
400 | } | |
401 | \f | |
402 | /* Handles a gdb command. This function is called by | |
403 | command_line_handler, which has processed one or more input lines | |
404 | into COMMAND. */ | |
392a587b | 405 | /* NOTE: 1999-04-30 This is the asynchronous version of the command_loop |
b5a0ac70 SS |
406 | function. The command_loop function will be obsolete when we |
407 | switch to use the event loop at every execution of gdb. */ | |
392a587b | 408 | static void |
b5a0ac70 SS |
409 | command_handler (command) |
410 | char *command; | |
411 | { | |
412 | struct cleanup *old_chain; | |
413 | int stdin_is_tty = ISATTY (stdin); | |
43ff13b4 JM |
414 | struct continuation_arg *arg1; |
415 | struct continuation_arg *arg2; | |
b5a0ac70 SS |
416 | long time_at_cmd_start; |
417 | #ifdef HAVE_SBRK | |
418 | long space_at_cmd_start = 0; | |
419 | #endif | |
420 | extern int display_time; | |
421 | extern int display_space; | |
422 | ||
423 | #if defined(TUI) | |
424 | extern int insert_mode; | |
425 | #endif | |
426 | ||
427 | quit_flag = 0; | |
428 | if (instream == stdin && stdin_is_tty) | |
429 | reinitialize_more_filter (); | |
430 | old_chain = make_cleanup ((make_cleanup_func) command_loop_marker, 0); | |
431 | ||
432 | #if defined(TUI) | |
433 | insert_mode = 0; | |
434 | #endif | |
435 | /* If readline returned a NULL command, it means that the | |
436 | connection with the terminal is gone. This happens at the | |
437 | end of a testsuite run, after Expect has hung up | |
438 | but GDB is still alive. In such a case, we just quit gdb | |
439 | killing the inferior program too. */ | |
440 | if (command == 0) | |
441 | quit_command ((char *) 0, stdin == instream); | |
442 | ||
443 | time_at_cmd_start = get_run_time (); | |
444 | ||
445 | if (display_space) | |
446 | { | |
447 | #ifdef HAVE_SBRK | |
448 | extern char **environ; | |
449 | char *lim = (char *) sbrk (0); | |
450 | ||
451 | space_at_cmd_start = (long) (lim - (char *) &environ); | |
452 | #endif | |
453 | } | |
454 | ||
455 | execute_command (command, instream == stdin); | |
c5aa993b | 456 | |
43ff13b4 JM |
457 | /* Set things up for this function to be compete later, once the |
458 | executin has completed, if we are doing an execution command, | |
459 | otherwise, just go ahead and finish. */ | |
460 | if (target_has_async && target_executing) | |
461 | { | |
c5aa993b | 462 | arg1 = |
43ff13b4 | 463 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); |
c5aa993b | 464 | arg2 = |
43ff13b4 JM |
465 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); |
466 | arg1->next = arg2; | |
467 | arg2->next = NULL; | |
468 | arg1->data = (PTR) time_at_cmd_start; | |
469 | arg2->data = (PTR) space_at_cmd_start; | |
470 | add_continuation (command_line_handler_continuation, arg1); | |
471 | } | |
b5a0ac70 | 472 | |
43ff13b4 JM |
473 | /* Do any commands attached to breakpoint we stopped at. Only if we |
474 | are always running synchronously. Or if we have just executed a | |
475 | command that doesn't start the target. */ | |
476 | if (!target_has_async || !target_executing) | |
477 | { | |
478 | bpstat_do_actions (&stop_bpstat); | |
479 | do_cleanups (old_chain); | |
c5aa993b | 480 | |
43ff13b4 JM |
481 | if (display_time) |
482 | { | |
483 | long cmd_time = get_run_time () - time_at_cmd_start; | |
484 | ||
485 | printf_unfiltered ("Command execution time: %ld.%06ld\n", | |
486 | cmd_time / 1000000, cmd_time % 1000000); | |
487 | } | |
488 | ||
489 | if (display_space) | |
490 | { | |
491 | #ifdef HAVE_SBRK | |
492 | extern char **environ; | |
493 | char *lim = (char *) sbrk (0); | |
494 | long space_now = lim - (char *) &environ; | |
495 | long space_diff = space_now - space_at_cmd_start; | |
496 | ||
497 | printf_unfiltered ("Space used: %ld (%c%ld for this command)\n", | |
498 | space_now, | |
499 | (space_diff >= 0 ? '+' : '-'), | |
500 | space_diff); | |
501 | #endif | |
502 | } | |
503 | } | |
504 | } | |
505 | ||
506 | /* Do any commands attached to breakpoint we stopped at. Only if we | |
507 | are always running synchronously. Or if we have just executed a | |
508 | command that doesn't start the target. */ | |
509 | void | |
510 | command_line_handler_continuation (arg) | |
511 | struct continuation_arg *arg; | |
c5aa993b | 512 | { |
43ff13b4 JM |
513 | extern int display_time; |
514 | extern int display_space; | |
515 | ||
516 | long time_at_cmd_start = (long) arg->data; | |
517 | long space_at_cmd_start = (long) arg->next->data; | |
b5a0ac70 | 518 | |
43ff13b4 | 519 | bpstat_do_actions (&stop_bpstat); |
c5aa993b JM |
520 | /*do_cleanups (old_chain); *//*?????FIXME????? */ |
521 | ||
b5a0ac70 SS |
522 | if (display_time) |
523 | { | |
524 | long cmd_time = get_run_time () - time_at_cmd_start; | |
525 | ||
526 | printf_unfiltered ("Command execution time: %ld.%06ld\n", | |
527 | cmd_time / 1000000, cmd_time % 1000000); | |
528 | } | |
b5a0ac70 SS |
529 | if (display_space) |
530 | { | |
531 | #ifdef HAVE_SBRK | |
532 | extern char **environ; | |
533 | char *lim = (char *) sbrk (0); | |
534 | long space_now = lim - (char *) &environ; | |
535 | long space_diff = space_now - space_at_cmd_start; | |
536 | ||
537 | printf_unfiltered ("Space used: %ld (%c%ld for this command)\n", | |
538 | space_now, | |
539 | (space_diff >= 0 ? '+' : '-'), | |
540 | space_diff); | |
541 | #endif | |
542 | } | |
543 | } | |
544 | ||
545 | /* Handle a complete line of input. This is called by the callback | |
546 | mechanism within the readline library. Deal with incomplete commands | |
547 | as well, by saving the partial input in a global buffer. */ | |
548 | ||
392a587b | 549 | /* NOTE: 1999-04-30 This is the asynchronous version of the |
b5a0ac70 SS |
550 | command_line_input function. command_line_input will become |
551 | obsolete once we use the event loop as the default mechanism in | |
552 | GDB. */ | |
553 | static void | |
554 | command_line_handler (rl) | |
555 | char *rl; | |
556 | { | |
557 | static char *linebuffer = 0; | |
558 | static unsigned linelength = 0; | |
559 | register char *p; | |
560 | char *p1; | |
b5a0ac70 SS |
561 | extern char *line; |
562 | extern int linesize; | |
563 | char *nline; | |
564 | char got_eof = 0; | |
565 | ||
566 | ||
567 | int repeat = (instream == stdin); | |
568 | ||
569 | if (annotation_level > 1 && instream == stdin) | |
570 | { | |
571 | printf_unfiltered ("\n\032\032post-"); | |
572 | printf_unfiltered (async_annotation_suffix); | |
573 | printf_unfiltered ("\n"); | |
574 | } | |
575 | ||
576 | if (linebuffer == 0) | |
577 | { | |
578 | linelength = 80; | |
579 | linebuffer = (char *) xmalloc (linelength); | |
580 | } | |
581 | ||
582 | p = linebuffer; | |
583 | ||
584 | if (more_to_come) | |
585 | { | |
586 | strcpy (linebuffer, readline_input_state.linebuffer); | |
587 | p = readline_input_state.linebuffer_ptr; | |
588 | free (readline_input_state.linebuffer); | |
589 | more_to_come = 0; | |
adf40b2e | 590 | pop_prompt (); |
b5a0ac70 SS |
591 | } |
592 | ||
593 | #ifdef STOP_SIGNAL | |
594 | if (job_control) | |
0f71a2f6 | 595 | signal (STOP_SIGNAL, handle_stop_sig); |
b5a0ac70 SS |
596 | #endif |
597 | ||
598 | /* Make sure that all output has been output. Some machines may let | |
599 | you get away with leaving out some of the gdb_flush, but not all. */ | |
600 | wrap_here (""); | |
601 | gdb_flush (gdb_stdout); | |
602 | gdb_flush (gdb_stderr); | |
603 | ||
604 | if (source_file_name != NULL) | |
605 | { | |
606 | ++source_line_number; | |
607 | sprintf (source_error, | |
608 | "%s%s:%d: Error in sourced command file:\n", | |
609 | source_pre_error, | |
610 | source_file_name, | |
611 | source_line_number); | |
612 | error_pre_print = source_error; | |
613 | } | |
614 | ||
615 | /* If we are in this case, then command_handler will call quit | |
616 | and exit from gdb. */ | |
617 | if (!rl || rl == (char *) EOF) | |
618 | { | |
619 | got_eof = 1; | |
620 | command_handler (0); | |
621 | } | |
622 | if (strlen (rl) + 1 + (p - linebuffer) > linelength) | |
623 | { | |
624 | linelength = strlen (rl) + 1 + (p - linebuffer); | |
625 | nline = (char *) xrealloc (linebuffer, linelength); | |
626 | p += nline - linebuffer; | |
627 | linebuffer = nline; | |
628 | } | |
629 | p1 = rl; | |
630 | /* Copy line. Don't copy null at end. (Leaves line alone | |
631 | if this was just a newline) */ | |
632 | while (*p1) | |
633 | *p++ = *p1++; | |
634 | ||
635 | free (rl); /* Allocated in readline. */ | |
636 | ||
637 | if (p == linebuffer || *(p - 1) == '\\') | |
638 | { | |
639 | /* We come here also if the line entered is empty (just a 'return') */ | |
640 | p--; /* Put on top of '\'. */ | |
641 | ||
642 | if (*p == '\\') | |
643 | { | |
644 | readline_input_state.linebuffer = savestring (linebuffer, | |
645 | strlen (linebuffer)); | |
646 | readline_input_state.linebuffer_ptr = p; | |
647 | ||
648 | /* We will not invoke a execute_command if there is more | |
649 | input expected to complete the command. So, we need to | |
650 | print an empty prompt here. */ | |
b5a0ac70 | 651 | more_to_come = 1; |
adf40b2e JM |
652 | push_prompt ("", "", ""); |
653 | display_gdb_prompt (0); | |
654 | return; | |
b5a0ac70 SS |
655 | } |
656 | } | |
657 | ||
658 | #ifdef STOP_SIGNAL | |
659 | if (job_control) | |
660 | signal (STOP_SIGNAL, SIG_DFL); | |
661 | #endif | |
662 | ||
663 | #define SERVER_COMMAND_LENGTH 7 | |
664 | server_command = | |
665 | (p - linebuffer > SERVER_COMMAND_LENGTH) | |
666 | && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH); | |
667 | if (server_command) | |
668 | { | |
669 | /* Note that we don't set `line'. Between this and the check in | |
670 | dont_repeat, this insures that repeating will still do the | |
671 | right thing. */ | |
672 | *p = '\0'; | |
673 | command_handler (linebuffer + SERVER_COMMAND_LENGTH); | |
674 | display_gdb_prompt (0); | |
675 | return; | |
676 | } | |
677 | ||
678 | /* Do history expansion if that is wished. */ | |
679 | if (history_expansion_p && instream == stdin | |
680 | && ISATTY (instream)) | |
681 | { | |
682 | char *history_value; | |
683 | int expanded; | |
684 | ||
685 | *p = '\0'; /* Insert null now. */ | |
686 | expanded = history_expand (linebuffer, &history_value); | |
687 | if (expanded) | |
688 | { | |
689 | /* Print the changes. */ | |
690 | printf_unfiltered ("%s\n", history_value); | |
691 | ||
692 | /* If there was an error, call this function again. */ | |
693 | if (expanded < 0) | |
694 | { | |
695 | free (history_value); | |
696 | return; | |
697 | } | |
698 | if (strlen (history_value) > linelength) | |
699 | { | |
700 | linelength = strlen (history_value) + 1; | |
701 | linebuffer = (char *) xrealloc (linebuffer, linelength); | |
702 | } | |
703 | strcpy (linebuffer, history_value); | |
704 | p = linebuffer + strlen (linebuffer); | |
705 | free (history_value); | |
706 | } | |
707 | } | |
708 | ||
709 | /* If we just got an empty line, and that is supposed | |
710 | to repeat the previous command, return the value in the | |
711 | global buffer. */ | |
712 | if (repeat && p == linebuffer && *p != '\\') | |
713 | { | |
714 | command_handler (line); | |
715 | display_gdb_prompt (0); | |
716 | return; | |
717 | } | |
718 | ||
719 | for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++); | |
720 | if (repeat && !*p1) | |
721 | { | |
722 | command_handler (line); | |
723 | display_gdb_prompt (0); | |
724 | return; | |
725 | } | |
726 | ||
727 | *p = 0; | |
728 | ||
729 | /* Add line to history if appropriate. */ | |
730 | if (instream == stdin | |
731 | && ISATTY (stdin) && *linebuffer) | |
732 | add_history (linebuffer); | |
733 | ||
734 | /* Note: lines consisting solely of comments are added to the command | |
735 | history. This is useful when you type a command, and then | |
736 | realize you don't want to execute it quite yet. You can comment | |
737 | out the command and then later fetch it from the value history | |
738 | and remove the '#'. The kill ring is probably better, but some | |
739 | people are in the habit of commenting things out. */ | |
740 | if (*p1 == '#') | |
741 | *p1 = '\0'; /* Found a comment. */ | |
742 | ||
743 | /* Save into global buffer if appropriate. */ | |
744 | if (repeat) | |
745 | { | |
746 | if (linelength > linesize) | |
747 | { | |
748 | line = xrealloc (line, linelength); | |
749 | linesize = linelength; | |
750 | } | |
751 | strcpy (line, linebuffer); | |
752 | if (!more_to_come) | |
753 | { | |
754 | command_handler (line); | |
755 | display_gdb_prompt (0); | |
756 | } | |
757 | return; | |
758 | } | |
759 | ||
760 | command_handler (linebuffer); | |
761 | display_gdb_prompt (0); | |
762 | return; | |
763 | } | |
764 | ||
765 | /* Does reading of input from terminal w/o the editing features | |
766 | provided by the readline library. */ | |
767 | ||
392a587b | 768 | /* NOTE: 1999-04-30 Asynchronous version of gdb_readline. gdb_readline |
b5a0ac70 SS |
769 | will become obsolete when the event loop is made the default |
770 | execution for gdb. */ | |
085dd6e6 | 771 | void |
b5a0ac70 SS |
772 | gdb_readline2 () |
773 | { | |
774 | int c; | |
775 | char *result; | |
776 | int input_index = 0; | |
777 | int result_size = 80; | |
778 | ||
779 | result = (char *) xmalloc (result_size); | |
780 | ||
781 | /* We still need the while loop here, even though it would seem | |
782 | obvious to invoke gdb_readline2 at every character entered. If | |
783 | not using the readline library, the terminal is in cooked mode, | |
784 | which sends the characters all at once. Poll will notice that the | |
785 | input fd has changed state only after enter is pressed. At this | |
786 | point we still need to fetch all the chars entered. */ | |
787 | ||
788 | while (1) | |
789 | { | |
790 | /* Read from stdin if we are executing a user defined command. | |
791 | This is the right thing for prompt_for_continue, at least. */ | |
792 | c = fgetc (instream ? instream : stdin); | |
793 | ||
794 | if (c == EOF) | |
795 | { | |
796 | if (input_index > 0) | |
797 | /* The last line does not end with a newline. Return it, and | |
798 | if we are called again fgetc will still return EOF and | |
799 | we'll return NULL then. */ | |
800 | break; | |
801 | free (result); | |
0f71a2f6 | 802 | (*input_handler) (0); |
b5a0ac70 SS |
803 | } |
804 | ||
805 | if (c == '\n') | |
806 | #ifndef CRLF_SOURCE_FILES | |
807 | break; | |
808 | #else | |
809 | { | |
810 | if (input_index > 0 && result[input_index - 1] == '\r') | |
811 | input_index--; | |
812 | break; | |
813 | } | |
814 | #endif | |
815 | ||
816 | result[input_index++] = c; | |
817 | while (input_index >= result_size) | |
818 | { | |
819 | result_size *= 2; | |
820 | result = (char *) xrealloc (result, result_size); | |
821 | } | |
822 | } | |
823 | ||
824 | result[input_index++] = '\0'; | |
0f71a2f6 | 825 | (*input_handler) (result); |
b5a0ac70 SS |
826 | } |
827 | \f | |
828 | ||
829 | /* Initialization of signal handlers and tokens. There is a function | |
830 | handle_sig* for each of the signals GDB cares about. Specifically: | |
831 | SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These | |
832 | functions are the actual signal handlers associated to the signals | |
833 | via calls to signal(). The only job for these functions is to | |
834 | enqueue the appropriate event/procedure with the event loop. Such | |
835 | procedures are the old signal handlers. The event loop will take | |
836 | care of invoking the queued procedures to perform the usual tasks | |
837 | associated with the reception of the signal. */ | |
392a587b | 838 | /* NOTE: 1999-04-30 This is the asynchronous version of init_signals. |
b5a0ac70 SS |
839 | init_signals will become obsolete as we move to have to event loop |
840 | as the default for gdb. */ | |
841 | void | |
842 | async_init_signals () | |
c5aa993b | 843 | { |
b5a0ac70 SS |
844 | signal (SIGINT, handle_sigint); |
845 | sigint_token = | |
0f71a2f6 | 846 | create_async_signal_handler (async_request_quit, NULL); |
b5a0ac70 SS |
847 | |
848 | /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed | |
849 | to the inferior and breakpoints will be ignored. */ | |
850 | #ifdef SIGTRAP | |
851 | signal (SIGTRAP, SIG_DFL); | |
852 | #endif | |
853 | ||
854 | /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get | |
855 | passed to the inferior, which we don't want. It would be | |
856 | possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but | |
857 | on BSD4.3 systems using vfork, that can affect the | |
858 | GDB process as well as the inferior (the signal handling tables | |
859 | might be in memory, shared between the two). Since we establish | |
860 | a handler for SIGQUIT, when we call exec it will set the signal | |
861 | to SIG_DFL for us. */ | |
862 | signal (SIGQUIT, handle_sigquit); | |
863 | sigquit_token = | |
0f71a2f6 | 864 | create_async_signal_handler (async_do_nothing, NULL); |
b5a0ac70 SS |
865 | #ifdef SIGHUP |
866 | if (signal (SIGHUP, handle_sighup) != SIG_IGN) | |
867 | sighup_token = | |
0f71a2f6 | 868 | create_async_signal_handler (async_disconnect, NULL); |
b5a0ac70 SS |
869 | else |
870 | sighup_token = | |
0f71a2f6 | 871 | create_async_signal_handler (async_do_nothing, NULL); |
b5a0ac70 SS |
872 | #endif |
873 | signal (SIGFPE, handle_sigfpe); | |
874 | sigfpe_token = | |
0f71a2f6 | 875 | create_async_signal_handler (async_float_handler, NULL); |
b5a0ac70 SS |
876 | |
877 | #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER) | |
878 | signal (SIGWINCH, handle_sigwinch); | |
879 | sigwinch_token = | |
0f71a2f6 | 880 | create_async_signal_handler (SIGWINCH_HANDLER, NULL); |
b5a0ac70 | 881 | #endif |
0f71a2f6 JM |
882 | #ifdef STOP_SIGNAL |
883 | sigtstp_token = | |
884 | create_async_signal_handler (async_stop_sig, NULL); | |
885 | #endif | |
886 | ||
887 | } | |
888 | ||
c5aa993b | 889 | void |
0f71a2f6 JM |
890 | mark_async_signal_handler_wrapper (token) |
891 | void *token; | |
892 | { | |
893 | mark_async_signal_handler ((async_signal_handler *) token); | |
b5a0ac70 SS |
894 | } |
895 | ||
896 | /* Tell the event loop what to do if SIGINT is received. | |
897 | See event-signal.c. */ | |
c5aa993b | 898 | void |
b5a0ac70 SS |
899 | handle_sigint (sig) |
900 | int sig; | |
901 | { | |
902 | signal (sig, handle_sigint); | |
903 | ||
904 | /* If immediate_quit is set, we go ahead and process the SIGINT right | |
905 | away, even if we usually would defer this to the event loop. The | |
906 | assumption here is that it is safe to process ^C immediately if | |
907 | immediate_quit is set. If we didn't, SIGINT would be really | |
908 | processed only the next time through the event loop. To get to | |
909 | that point, though, the command that we want to interrupt needs to | |
910 | finish first, which is unacceptable. */ | |
911 | if (immediate_quit) | |
0f71a2f6 | 912 | async_request_quit (0); |
b5a0ac70 SS |
913 | else |
914 | /* If immediate quit is not set, we process SIGINT the next time | |
915 | through the loop, which is fine. */ | |
0f71a2f6 | 916 | mark_async_signal_handler_wrapper (sigint_token); |
b5a0ac70 SS |
917 | } |
918 | ||
919 | /* Do the quit. All the checks have been done by the caller. */ | |
c5aa993b | 920 | void |
0f71a2f6 JM |
921 | async_request_quit (arg) |
922 | gdb_client_data arg; | |
b5a0ac70 SS |
923 | { |
924 | quit_flag = 1; | |
925 | #ifdef REQUEST_QUIT | |
926 | REQUEST_QUIT; | |
927 | #else | |
928 | quit (); | |
929 | #endif | |
930 | } | |
931 | ||
932 | /* Tell the event loop what to do if SIGQUIT is received. | |
933 | See event-signal.c. */ | |
c5aa993b | 934 | static void |
b5a0ac70 SS |
935 | handle_sigquit (sig) |
936 | int sig; | |
937 | { | |
0f71a2f6 | 938 | mark_async_signal_handler_wrapper (sigquit_token); |
b5a0ac70 SS |
939 | signal (sig, handle_sigquit); |
940 | } | |
941 | ||
942 | /* Called by the event loop in response to a SIGQUIT. */ | |
c5aa993b | 943 | static void |
0f71a2f6 JM |
944 | async_do_nothing (arg) |
945 | gdb_client_data arg; | |
b5a0ac70 SS |
946 | { |
947 | /* Empty function body. */ | |
948 | } | |
949 | ||
950 | #ifdef SIGHUP | |
951 | /* Tell the event loop what to do if SIGHUP is received. | |
952 | See event-signal.c. */ | |
c5aa993b | 953 | static void |
b5a0ac70 SS |
954 | handle_sighup (sig) |
955 | int sig; | |
956 | { | |
0f71a2f6 | 957 | mark_async_signal_handler_wrapper (sighup_token); |
b5a0ac70 SS |
958 | signal (sig, handle_sighup); |
959 | } | |
960 | ||
0f71a2f6 | 961 | /* Called by the event loop to process a SIGHUP */ |
c5aa993b | 962 | static void |
0f71a2f6 JM |
963 | async_disconnect (arg) |
964 | gdb_client_data arg; | |
b5a0ac70 SS |
965 | { |
966 | catch_errors (quit_cover, NULL, | |
967 | "Could not kill the program being debugged", | |
968 | RETURN_MASK_ALL); | |
969 | signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */ | |
970 | kill (getpid (), SIGHUP); | |
971 | } | |
972 | #endif | |
973 | ||
0f71a2f6 | 974 | #ifdef STOP_SIGNAL |
c5aa993b JM |
975 | void |
976 | handle_stop_sig (sig) | |
0f71a2f6 JM |
977 | int sig; |
978 | { | |
c5aa993b JM |
979 | mark_async_signal_handler_wrapper (sigtstp_token); |
980 | signal (sig, handle_stop_sig); | |
0f71a2f6 JM |
981 | } |
982 | ||
983 | static void | |
984 | async_stop_sig (arg) | |
985 | gdb_client_data arg; | |
986 | { | |
c5aa993b | 987 | char *prompt = get_prompt (); |
0f71a2f6 JM |
988 | #if STOP_SIGNAL == SIGTSTP |
989 | signal (SIGTSTP, SIG_DFL); | |
990 | sigsetmask (0); | |
991 | kill (getpid (), SIGTSTP); | |
992 | signal (SIGTSTP, handle_stop_sig); | |
993 | #else | |
994 | signal (STOP_SIGNAL, handle_stop_sig); | |
995 | #endif | |
996 | printf_unfiltered ("%s", prompt); | |
997 | gdb_flush (gdb_stdout); | |
998 | ||
999 | /* Forget about any previous command -- null line now will do nothing. */ | |
1000 | dont_repeat (); | |
1001 | } | |
1002 | #endif /* STOP_SIGNAL */ | |
1003 | ||
b5a0ac70 SS |
1004 | /* Tell the event loop what to do if SIGFPE is received. |
1005 | See event-signal.c. */ | |
c5aa993b | 1006 | static void |
b5a0ac70 SS |
1007 | handle_sigfpe (sig) |
1008 | int sig; | |
1009 | { | |
0f71a2f6 | 1010 | mark_async_signal_handler_wrapper (sigfpe_token); |
b5a0ac70 SS |
1011 | signal (sig, handle_sigfpe); |
1012 | } | |
1013 | ||
1014 | /* Event loop will call this functin to process a SIGFPE. */ | |
c5aa993b | 1015 | static void |
0f71a2f6 JM |
1016 | async_float_handler (arg) |
1017 | gdb_client_data arg; | |
b5a0ac70 SS |
1018 | { |
1019 | /* This message is based on ANSI C, section 4.7. Note that integer | |
1020 | divide by zero causes this, so "float" is a misnomer. */ | |
1021 | error ("Erroneous arithmetic operation."); | |
1022 | } | |
1023 | ||
1024 | /* Tell the event loop what to do if SIGWINCH is received. | |
1025 | See event-signal.c. */ | |
1026 | #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER) | |
c5aa993b | 1027 | static void |
b5a0ac70 SS |
1028 | handle_sigwinch (sig) |
1029 | int sig; | |
1030 | { | |
0f71a2f6 | 1031 | mark_async_signal_handler_wrapper (sigwinch_token); |
b5a0ac70 SS |
1032 | signal (sig, handle_sigwinch); |
1033 | } | |
1034 | #endif | |
1035 | \f | |
1036 | ||
1037 | /* Called by do_setshow_command. */ | |
1038 | /* ARGSUSED */ | |
1039 | void | |
1040 | set_async_editing_command (args, from_tty, c) | |
1041 | char *args; | |
1042 | int from_tty; | |
1043 | struct cmd_list_element *c; | |
1044 | { | |
1045 | change_line_handler (); | |
1046 | } | |
1047 | ||
1048 | /* Called by do_setshow_command. */ | |
1049 | /* ARGSUSED */ | |
1050 | void | |
1051 | set_async_annotation_level (args, from_tty, c) | |
1052 | char *args; | |
1053 | int from_tty; | |
1054 | struct cmd_list_element *c; | |
1055 | { | |
1056 | change_annotation_level (); | |
1057 | } | |
1058 | ||
1059 | /* Called by do_setshow_command. */ | |
1060 | /* ARGSUSED */ | |
1061 | void | |
1062 | set_async_prompt (args, from_tty, c) | |
1063 | char *args; | |
1064 | int from_tty; | |
1065 | struct cmd_list_element *c; | |
1066 | { | |
1067 | PROMPT (0) = savestring (new_async_prompt, strlen (new_async_prompt)); | |
1068 | } | |
1069 | ||
0f71a2f6 JM |
1070 | /* Set things up for readline to be invoked via the alternate |
1071 | interface, i.e. via a callback function (rl_callback_read_char), | |
c5aa993b | 1072 | and hook up instream to the event loop. */ |
0f71a2f6 JM |
1073 | void |
1074 | _initialize_event_loop () | |
1075 | { | |
9e0b60a8 JM |
1076 | if (async_p) |
1077 | { | |
1078 | /* When a character is detected on instream by select or poll, | |
c5aa993b | 1079 | readline will be invoked via this callback function. */ |
9e0b60a8 JM |
1080 | call_readline = rl_callback_read_char; |
1081 | ||
1082 | /* When readline has read an end-of-line character, it passes | |
c5aa993b JM |
1083 | the complete line to gdb for processing. command_line_handler |
1084 | is the function that does this. */ | |
9e0b60a8 JM |
1085 | input_handler = command_line_handler; |
1086 | ||
1087 | /* Tell readline to use the same input stream that gdb uses. */ | |
1088 | rl_instream = instream; | |
1089 | ||
1090 | /* Get a file descriptor for the input stream, so that we can | |
085dd6e6 | 1091 | register it with the event loop. */ |
9e0b60a8 JM |
1092 | input_fd = fileno (instream); |
1093 | ||
085dd6e6 JM |
1094 | /* Tell gdb to use the cli_command_loop as the main loop. */ |
1095 | command_loop_hook = cli_command_loop; | |
1096 | ||
9e0b60a8 JM |
1097 | /* Now we need to create the event sources for the input file |
1098 | descriptor. */ | |
1099 | /* At this point in time, this is the only event source that we | |
c5aa993b JM |
1100 | register with the even loop. Another source is going to be |
1101 | the target program (inferior), but that must be registered | |
1102 | only when it actually exists (I.e. after we say 'run' or | |
1103 | after we connect to a remote target. */ | |
085dd6e6 | 1104 | add_file_handler (input_fd, (file_handler_func *) call_readline, 0); |
c5aa993b | 1105 | |
085dd6e6 | 1106 | /* Tell gdb that we will be using the readline library. This |
c5aa993b JM |
1107 | could be overwritten by a command in .gdbinit like 'set |
1108 | editing on' or 'off'. */ | |
085dd6e6 | 1109 | async_command_editing_p = 1; |
9e0b60a8 | 1110 | } |
0f71a2f6 | 1111 | } |