2011-03-05 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / mi / mi-interp.c
CommitLineData
4a8f6654
AC
1/* MI Interpreter Definitions and Commands for GDB, the GNU debugger.
2
7b6bb8da 3 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
9b254dd1 4 Free Software Foundation, Inc.
4a8f6654
AC
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
4a8f6654
AC
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4a8f6654
AC
20
21#include "defs.h"
22#include "gdb_string.h"
23#include "interps.h"
24#include "event-top.h"
25#include "event-loop.h"
26#include "inferior.h"
27#include "ui-out.h"
28#include "top.h"
c1043fc2 29#include "exceptions.h"
4a8f6654
AC
30#include "mi-main.h"
31#include "mi-cmds.h"
32#include "mi-out.h"
33#include "mi-console.h"
66bb093b 34#include "mi-common.h"
683f2885
VP
35#include "observer.h"
36#include "gdbthread.h"
c86cf029 37#include "solist.h"
4a8f6654 38
4a8f6654
AC
39/* These are the interpreter setup, etc. functions for the MI interpreter */
40static void mi_execute_command_wrapper (char *cmd);
41static void mi_command_loop (int mi_version);
4a8f6654
AC
42
43/* These are hooks that we put in place while doing interpreter_exec
44 so we can report interesting things that happened "behind the mi's
45 back" in this command */
bee0189a 46static int mi_interp_query_hook (const char *ctlstr, va_list ap)
a0b31db1 47 ATTRIBUTE_PRINTF (1, 0);
4a8f6654 48
f786f615 49static void mi3_command_loop (void);
4a8f6654
AC
50static void mi2_command_loop (void);
51static void mi1_command_loop (void);
52
53static void mi_insert_notify_hooks (void);
54static void mi_remove_notify_hooks (void);
1d33d6ba 55static void mi_on_normal_stop (struct bpstats *bs, int print_frame);
4a8f6654 56
683f2885 57static void mi_new_thread (struct thread_info *t);
a07daef3 58static void mi_thread_exit (struct thread_info *t, int silent);
a79b8f6e
VP
59static void mi_inferior_added (struct inferior *inf);
60static void mi_inferior_appeared (struct inferior *inf);
61static void mi_inferior_exit (struct inferior *inf);
62static void mi_inferior_removed (struct inferior *inf);
e1ac3328 63static void mi_on_resume (ptid_t ptid);
c86cf029
VP
64static void mi_solib_loaded (struct so_list *solib);
65static void mi_solib_unloaded (struct so_list *solib);
f3b1572e 66static void mi_about_to_proceed (void);
683f2885 67
a79b8f6e
VP
68static int report_initial_inferior (struct inferior *inf, void *closure);
69
4a8f6654 70static void *
683f2885 71mi_interpreter_init (int top_level)
4a8f6654
AC
72{
73 struct mi_interp *mi = XMALLOC (struct mi_interp);
74
4a8f6654
AC
75 /* HACK: We need to force stdout/stderr to point at the console. This avoids
76 any potential side effects caused by legacy code that is still
77 using the TUI / fputs_unfiltered_hook. So we set up output channels for
78 this now, and swap them in when we are run. */
79
80 raw_stdout = stdio_fileopen (stdout);
81
82 /* Create MI channels */
83 mi->out = mi_console_file_new (raw_stdout, "~", '"');
84 mi->err = mi_console_file_new (raw_stdout, "&", '"');
85 mi->log = mi->err;
86 mi->targ = mi_console_file_new (raw_stdout, "@", '"');
87 mi->event_channel = mi_console_file_new (raw_stdout, "=", 0);
88
683f2885 89 if (top_level)
063bfe2e
VP
90 {
91 observer_attach_new_thread (mi_new_thread);
92 observer_attach_thread_exit (mi_thread_exit);
a79b8f6e 93 observer_attach_inferior_added (mi_inferior_added);
6c95b8df 94 observer_attach_inferior_appeared (mi_inferior_appeared);
4a92f99b 95 observer_attach_inferior_exit (mi_inferior_exit);
a79b8f6e 96 observer_attach_inferior_removed (mi_inferior_removed);
f7f9a841 97 observer_attach_normal_stop (mi_on_normal_stop);
e1ac3328 98 observer_attach_target_resumed (mi_on_resume);
c86cf029
VP
99 observer_attach_solib_loaded (mi_solib_loaded);
100 observer_attach_solib_unloaded (mi_solib_unloaded);
f3b1572e 101 observer_attach_about_to_proceed (mi_about_to_proceed);
a79b8f6e
VP
102
103 /* The initial inferior is created before this function is called, so we
104 need to report it explicitly. Use iteration in case future version
105 of GDB creates more than one inferior up-front. */
106 iterate_over_inferiors (report_initial_inferior, mi);
063bfe2e 107 }
683f2885 108
4a8f6654
AC
109 return mi;
110}
111
112static int
113mi_interpreter_resume (void *data)
114{
115 struct mi_interp *mi = data;
4a8f6654 116
102040f0 117 /* As per hack note in mi_interpreter_init, swap in the output channels... */
4a8f6654
AC
118 gdb_setup_readline ();
119
362646f5
AC
120 /* These overwrite some of the initialization done in
121 _intialize_event_loop. */
122 call_readline = gdb_readline2;
123 input_handler = mi_execute_command_wrapper;
124 add_file_handler (input_fd, stdin_event_handler, 0);
125 async_command_editing_p = 0;
126 /* FIXME: This is a total hack for now. PB's use of the MI
127 implicitly relies on a bug in the async support which allows
128 asynchronous commands to leak through the commmand loop. The bug
129 involves (but is not limited to) the fact that sync_execution was
130 erroneously initialized to 0. Duplicate by initializing it thus
131 here... */
132 sync_execution = 0;
4a8f6654
AC
133
134 gdb_stdout = mi->out;
135 /* Route error and log output through the MI */
136 gdb_stderr = mi->err;
137 gdb_stdlog = mi->log;
138 /* Route target output through the MI. */
139 gdb_stdtarg = mi->targ;
1f20321b
FR
140 /* Route target error through the MI as well. */
141 gdb_stdtargerr = mi->targ;
4a8f6654
AC
142
143 /* Replace all the hooks that we know about. There really needs to
144 be a better way of doing this... */
145 clear_interpreter_hooks ();
146
9a4105ab 147 deprecated_show_load_progress = mi_load_progress;
4a8f6654
AC
148
149 /* If we're _the_ interpreter, take control. */
150 if (current_interp_named_p (INTERP_MI1))
9a4105ab 151 deprecated_command_loop_hook = mi1_command_loop;
f786f615 152 else if (current_interp_named_p (INTERP_MI2))
9a4105ab 153 deprecated_command_loop_hook = mi2_command_loop;
f786f615 154 else if (current_interp_named_p (INTERP_MI3))
9a4105ab 155 deprecated_command_loop_hook = mi3_command_loop;
4a8f6654 156 else
9a4105ab 157 deprecated_command_loop_hook = mi2_command_loop;
4a8f6654
AC
158
159 return 1;
160}
161
162static int
163mi_interpreter_suspend (void *data)
164{
165 gdb_disable_readline ();
166 return 1;
167}
168
71fff37b 169static struct gdb_exception
4a8f6654
AC
170mi_interpreter_exec (void *data, const char *command)
171{
172 char *tmp = alloca (strlen (command) + 1);
102040f0 173
4a8f6654
AC
174 strcpy (tmp, command);
175 mi_execute_command_wrapper (tmp);
c1043fc2 176 return exception_none;
4a8f6654
AC
177}
178
179/* Never display the default gdb prompt in mi case. */
180static int
181mi_interpreter_prompt_p (void *data)
182{
183 return 0;
184}
185
ce8f13f8 186void
4a8f6654
AC
187mi_cmd_interpreter_exec (char *command, char **argv, int argc)
188{
189 struct interp *interp_to_use;
4a8f6654 190 int i;
a13e061a
PA
191 char *mi_error_message = NULL;
192 struct cleanup *old_chain;
4a8f6654
AC
193
194 if (argc < 2)
1b05df00 195 error (_("-interpreter-exec: "
9b20d036 196 "Usage: -interpreter-exec interp command"));
4a8f6654
AC
197
198 interp_to_use = interp_lookup (argv[0]);
199 if (interp_to_use == NULL)
1b05df00 200 error (_("-interpreter-exec: could not find interpreter \"%s\""),
9a2b4c1b 201 argv[0]);
4a8f6654
AC
202
203 if (!interp_exec_p (interp_to_use))
1b05df00 204 error (_("-interpreter-exec: interpreter \"%s\" "
9b20d036 205 "does not support command execution"),
a13e061a 206 argv[0]);
4a8f6654
AC
207
208 /* Insert the MI out hooks, making sure to also call the interpreter's hooks
209 if it has any. */
210 /* KRS: We shouldn't need this... Events should be installed and they should
211 just ALWAYS fire something out down the MI channel... */
212 mi_insert_notify_hooks ();
213
214 /* Now run the code... */
215
a13e061a 216 old_chain = make_cleanup (null_cleanup, 0);
4a8f6654
AC
217 for (i = 1; i < argc; i++)
218 {
32c1e744 219 struct gdb_exception e = interp_exec (interp_to_use, argv[i]);
102040f0 220
32c1e744
VP
221 if (e.reason < 0)
222 {
223 mi_error_message = xstrdup (e.message);
a13e061a 224 make_cleanup (xfree, mi_error_message);
32c1e744
VP
225 break;
226 }
4a8f6654
AC
227 }
228
229 mi_remove_notify_hooks ();
230
a13e061a
PA
231 if (mi_error_message != NULL)
232 error ("%s", mi_error_message);
233 do_cleanups (old_chain);
4a8f6654
AC
234}
235
236/*
9a2b4c1b
MS
237 * mi_insert_notify_hooks - This inserts a number of hooks that are
238 * meant to produce async-notify ("=") MI messages while running
239 * commands in another interpreter using mi_interpreter_exec. The
240 * canonical use for this is to allow access to the gdb CLI
241 * interpreter from within the MI, while still producing MI style
242 * output when actions in the CLI command change gdb's state.
4a8f6654
AC
243*/
244
245static void
246mi_insert_notify_hooks (void)
247{
9a4105ab 248 deprecated_query_hook = mi_interp_query_hook;
4a8f6654
AC
249}
250
251static void
11308a41 252mi_remove_notify_hooks (void)
4a8f6654 253{
9a4105ab 254 deprecated_query_hook = NULL;
4a8f6654
AC
255}
256
257static int
258mi_interp_query_hook (const char *ctlstr, va_list ap)
259{
260 return 1;
261}
262
4a8f6654
AC
263static void
264mi_execute_command_wrapper (char *cmd)
265{
266 mi_execute_command (cmd, stdin == instream);
267}
268
269static void
270mi1_command_loop (void)
271{
272 mi_command_loop (1);
273}
274
275static void
276mi2_command_loop (void)
277{
278 mi_command_loop (2);
279}
280
f786f615
AC
281static void
282mi3_command_loop (void)
283{
284 mi_command_loop (3);
285}
286
4a8f6654
AC
287static void
288mi_command_loop (int mi_version)
289{
4a8f6654
AC
290 /* Turn off 8 bit strings in quoted output. Any character with the
291 high bit set is printed using C's octal format. */
292 sevenbit_strings = 1;
293 /* Tell the world that we're alive */
294 fputs_unfiltered ("(gdb) \n", raw_stdout);
295 gdb_flush (raw_stdout);
362646f5 296 start_event_loop ();
4a8f6654
AC
297}
298
683f2885
VP
299static void
300mi_new_thread (struct thread_info *t)
301{
302 struct mi_interp *mi = top_level_interpreter_data ();
a79b8f6e
VP
303 struct inferior *inf = find_inferior_pid (ptid_get_pid (t->ptid));
304
305 gdb_assert (inf);
683f2885 306
3d043ef6 307 fprintf_unfiltered (mi->event_channel,
a79b8f6e
VP
308 "thread-created,id=\"%d\",group-id=\"i%d\"",
309 t->num, inf->num);
683f2885
VP
310 gdb_flush (mi->event_channel);
311}
312
063bfe2e 313static void
a07daef3 314mi_thread_exit (struct thread_info *t, int silent)
063bfe2e 315{
a07daef3 316 struct mi_interp *mi;
a79b8f6e 317 struct inferior *inf;
a07daef3
PA
318
319 if (silent)
320 return;
321
a79b8f6e
VP
322 inf = find_inferior_pid (ptid_get_pid (t->ptid));
323
a07daef3 324 mi = top_level_interpreter_data ();
063bfe2e 325 target_terminal_ours ();
3d043ef6 326 fprintf_unfiltered (mi->event_channel,
a79b8f6e
VP
327 "thread-exited,id=\"%d\",group-id=\"i%d\"",
328 t->num, inf->num);
063bfe2e
VP
329 gdb_flush (mi->event_channel);
330}
331
a79b8f6e
VP
332static void
333mi_inferior_added (struct inferior *inf)
334{
335 struct mi_interp *mi = top_level_interpreter_data ();
102040f0 336
a79b8f6e
VP
337 target_terminal_ours ();
338 fprintf_unfiltered (mi->event_channel,
339 "thread-group-added,id=\"i%d\"",
340 inf->num);
341 gdb_flush (mi->event_channel);
342}
343
344static void
345mi_inferior_appeared (struct inferior *inf)
4a92f99b
VP
346{
347 struct mi_interp *mi = top_level_interpreter_data ();
102040f0 348
4a92f99b 349 target_terminal_ours ();
a79b8f6e
VP
350 fprintf_unfiltered (mi->event_channel,
351 "thread-group-started,id=\"i%d\",pid=\"%d\"",
352 inf->num, inf->pid);
4a92f99b
VP
353 gdb_flush (mi->event_channel);
354}
355
356static void
a79b8f6e 357mi_inferior_exit (struct inferior *inf)
4a92f99b
VP
358{
359 struct mi_interp *mi = top_level_interpreter_data ();
102040f0 360
4a92f99b 361 target_terminal_ours ();
a79b8f6e
VP
362 fprintf_unfiltered (mi->event_channel, "thread-group-exited,id=\"i%d\"",
363 inf->num);
4a92f99b
VP
364 gdb_flush (mi->event_channel);
365}
366
a79b8f6e
VP
367static void
368mi_inferior_removed (struct inferior *inf)
369{
370 struct mi_interp *mi = top_level_interpreter_data ();
102040f0 371
a79b8f6e
VP
372 target_terminal_ours ();
373 fprintf_unfiltered (mi->event_channel,
374 "thread-group-removed,id=\"i%d\"",
375 inf->num);
376 gdb_flush (mi->event_channel);
377}
378
f7f9a841 379static void
1d33d6ba 380mi_on_normal_stop (struct bpstats *bs, int print_frame)
f7f9a841
VP
381{
382 /* Since this can be called when CLI command is executing,
383 using cli interpreter, be sure to use MI uiout for output,
384 not the current one. */
1d33d6ba 385 struct ui_out *mi_uiout = interp_ui_out (top_level_interpreter ());
f7f9a841 386
1d33d6ba
VP
387 if (print_frame)
388 {
dc146f7c 389 int core;
102040f0 390
1d33d6ba
VP
391 if (uiout != mi_uiout)
392 {
393 /* The normal_stop function has printed frame information into
394 CLI uiout, or some other non-MI uiout. There's no way we
395 can extract proper fields from random uiout object, so we print
396 the frame again. In practice, this can only happen when running
397 a CLI command in MI. */
398 struct ui_out *saved_uiout = uiout;
102040f0 399
1d33d6ba
VP
400 uiout = mi_uiout;
401 print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC);
402 uiout = saved_uiout;
403 }
404
405 ui_out_field_int (mi_uiout, "thread-id",
406 pid_to_thread_id (inferior_ptid));
407 if (non_stop)
408 {
409 struct cleanup *back_to = make_cleanup_ui_out_list_begin_end
410 (mi_uiout, "stopped-threads");
102040f0 411
1d33d6ba 412 ui_out_field_int (mi_uiout, NULL,
102040f0 413 pid_to_thread_id (inferior_ptid));
1d33d6ba
VP
414 do_cleanups (back_to);
415 }
416 else
417 ui_out_field_string (mi_uiout, "stopped-threads", "all");
dc146f7c
VP
418
419 core = target_core_of_thread (inferior_ptid);
420 if (core != -1)
421 ui_out_field_int (mi_uiout, "core", core);
1d33d6ba
VP
422 }
423
f7f9a841 424 fputs_unfiltered ("*stopped", raw_stdout);
1d33d6ba
VP
425 mi_out_put (mi_uiout, raw_stdout);
426 mi_out_rewind (mi_uiout);
4333ada3 427 mi_print_timing_maybe ();
f7f9a841
VP
428 fputs_unfiltered ("\n", raw_stdout);
429 gdb_flush (raw_stdout);
430}
431
f3b1572e
PA
432static void
433mi_about_to_proceed (void)
434{
435 /* Suppress output while calling an inferior function. */
436
437 if (!ptid_equal (inferior_ptid, null_ptid))
438 {
439 struct thread_info *tp = inferior_thread ();
102040f0 440
16c381f0 441 if (tp->control.in_infcall)
f3b1572e
PA
442 return;
443 }
444
445 mi_proceeded = 1;
446}
447
d90e17a7
PA
448static int
449mi_output_running_pid (struct thread_info *info, void *arg)
450{
451 ptid_t *ptid = arg;
452
453 if (ptid_get_pid (*ptid) == ptid_get_pid (info->ptid))
454 fprintf_unfiltered (raw_stdout,
455 "*running,thread-id=\"%d\"\n",
456 info->num);
457
458 return 0;
459}
460
461static int
462mi_inferior_count (struct inferior *inf, void *arg)
463{
464 if (inf->pid != 0)
465 {
466 int *count_p = arg;
467 (*count_p)++;
468 }
469
470 return 0;
471}
472
e1ac3328
VP
473static void
474mi_on_resume (ptid_t ptid)
475{
c5a4d20b
PA
476 struct thread_info *tp = NULL;
477
9944e9c2 478 if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
c5a4d20b
PA
479 tp = inferior_thread ();
480 else
e09875d4 481 tp = find_thread_ptid (ptid);
c5a4d20b
PA
482
483 /* Suppress output while calling an inferior function. */
16c381f0 484 if (tp->control.in_infcall)
c5a4d20b
PA
485 return;
486
a2840c35
VP
487 /* To cater for older frontends, emit ^running, but do it only once
488 per each command. We do it here, since at this point we know
489 that the target was successfully resumed, and in non-async mode,
490 we won't return back to MI interpreter code until the target
491 is done running, so delaying the output of "^running" until then
492 will make it impossible for frontend to know what's going on.
493
494 In future (MI3), we'll be outputting "^done" here. */
f3b1572e 495 if (!running_result_record_printed && mi_proceeded)
a2840c35 496 {
c271b6e2
VP
497 fprintf_unfiltered (raw_stdout, "%s^running\n",
498 current_token ? current_token : "");
a2840c35
VP
499 }
500
e1ac3328
VP
501 if (PIDGET (ptid) == -1)
502 fprintf_unfiltered (raw_stdout, "*running,thread-id=\"all\"\n");
d90e17a7 503 else if (ptid_is_pid (ptid))
bb599c81 504 {
ab730e72 505 int count = 0;
d90e17a7
PA
506
507 /* Backwards compatibility. If there's only one inferior,
508 output "all", otherwise, output each resumed thread
509 individually. */
510 iterate_over_inferiors (mi_inferior_count, &count);
511
512 if (count == 1)
513 fprintf_unfiltered (raw_stdout, "*running,thread-id=\"all\"\n");
514 else
515 iterate_over_threads (mi_output_running_pid, &ptid);
bb599c81 516 }
e1ac3328
VP
517 else
518 {
e09875d4 519 struct thread_info *ti = find_thread_ptid (ptid);
102040f0 520
e1ac3328
VP
521 gdb_assert (ti);
522 fprintf_unfiltered (raw_stdout, "*running,thread-id=\"%d\"\n", ti->num);
523 }
a2840c35 524
f3b1572e 525 if (!running_result_record_printed && mi_proceeded)
a2840c35
VP
526 {
527 running_result_record_printed = 1;
528 /* This is what gdb used to do historically -- printing prompt even if
529 it cannot actually accept any input. This will be surely removed
530 for MI3, and may be removed even earler. */
531 /* FIXME: review the use of target_is_async_p here -- is that
532 what we want? */
533 if (!target_is_async_p ())
534 fputs_unfiltered ("(gdb) \n", raw_stdout);
535 }
c1828f25 536 gdb_flush (raw_stdout);
e1ac3328
VP
537}
538
c86cf029
VP
539static void
540mi_solib_loaded (struct so_list *solib)
541{
542 struct mi_interp *mi = top_level_interpreter_data ();
102040f0 543
c86cf029 544 target_terminal_ours ();
a79b8f6e
VP
545 if (gdbarch_has_global_solist (target_gdbarch))
546 fprintf_unfiltered (mi->event_channel,
547 "library-loaded,id=\"%s\",target-name=\"%s\","
548 "host-name=\"%s\",symbols-loaded=\"%d\"",
549 solib->so_original_name, solib->so_original_name,
550 solib->so_name, solib->symbols_loaded);
551 else
552 fprintf_unfiltered (mi->event_channel,
553 "library-loaded,id=\"%s\",target-name=\"%s\","
554 "host-name=\"%s\",symbols-loaded=\"%d\","
555 "thread-group=\"i%d\"",
556 solib->so_original_name, solib->so_original_name,
557 solib->so_name, solib->symbols_loaded,
558 current_inferior ()->num);
559
c86cf029
VP
560 gdb_flush (mi->event_channel);
561}
562
563static void
564mi_solib_unloaded (struct so_list *solib)
565{
566 struct mi_interp *mi = top_level_interpreter_data ();
102040f0 567
c86cf029 568 target_terminal_ours ();
a79b8f6e
VP
569 if (gdbarch_has_global_solist (target_gdbarch))
570 fprintf_unfiltered (mi->event_channel,
571 "library-unloaded,id=\"%s\",target-name=\"%s\","
572 "host-name=\"%s\"",
573 solib->so_original_name, solib->so_original_name,
574 solib->so_name);
575 else
576 fprintf_unfiltered (mi->event_channel,
577 "library-unloaded,id=\"%s\",target-name=\"%s\","
578 "host-name=\"%s\",thread-group=\"i%d\"",
579 solib->so_original_name, solib->so_original_name,
580 solib->so_name, current_inferior ()->num);
581
c86cf029
VP
582 gdb_flush (mi->event_channel);
583}
584
a79b8f6e
VP
585static int
586report_initial_inferior (struct inferior *inf, void *closure)
587{
588 /* This function is called from mi_intepreter_init, and since
589 mi_inferior_added assumes that inferior is fully initialized
590 and top_level_interpreter_data is set, we cannot call
591 it here. */
592 struct mi_interp *mi = closure;
102040f0 593
a79b8f6e
VP
594 target_terminal_ours ();
595 fprintf_unfiltered (mi->event_channel,
596 "thread-group-added,id=\"i%d\"",
597 inf->num);
598 gdb_flush (mi->event_channel);
599 return 0;
600}
c86cf029 601
b9362cc7
AC
602extern initialize_file_ftype _initialize_mi_interp; /* -Wmissing-prototypes */
603
4a8f6654
AC
604void
605_initialize_mi_interp (void)
606{
607 static const struct interp_procs procs =
608 {
609 mi_interpreter_init, /* init_proc */
610 mi_interpreter_resume, /* resume_proc */
611 mi_interpreter_suspend, /* suspend_proc */
612 mi_interpreter_exec, /* exec_proc */
613 mi_interpreter_prompt_p /* prompt_proc_p */
614 };
615
2fcf52f0 616 /* The various interpreter levels. */
4a8f6654 617 interp_add (interp_new (INTERP_MI1, NULL, mi_out_new (1), &procs));
2fcf52f0
AC
618 interp_add (interp_new (INTERP_MI2, NULL, mi_out_new (2), &procs));
619 interp_add (interp_new (INTERP_MI3, NULL, mi_out_new (3), &procs));
4a8f6654 620
2fcf52f0
AC
621 /* "mi" selects the most recent released version. "mi2" was
622 released as part of GDB 6.0. */
623 interp_add (interp_new (INTERP_MI, NULL, mi_out_new (2), &procs));
4a8f6654 624}
This page took 0.690601 seconds and 4 git commands to generate.