diff options
author | Pedro Alves <palves@redhat.com> | 2014-05-23 11:37:12 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-05-29 13:47:09 +0100 |
commit | 92bcb5f949b1d1f14df079bbe9fd3941c1e09919 (patch) | |
tree | 9c3b650d2095a5bb83550a97a6d499451a106a92 /gdb/inf-loop.c | |
parent | fd664c91769bf7e31c3b4d64e41d05854eecd94a (diff) | |
download | gdb-92bcb5f949b1d1f14df079bbe9fd3941c1e09919.zip gdb-92bcb5f949b1d1f14df079bbe9fd3941c1e09919.tar.gz gdb-92bcb5f949b1d1f14df079bbe9fd3941c1e09919.tar.bz2 |
Make display_gdb_prompt CLI-only.
Enabling target-async by default will require implementing sync
execution on top of an async target, much like foreground command are
implemented on the CLI in async mode.
In order to do that, we will need better control of when to print the
MI prompt. Currently the interp->display_prompt_p hook is all we
have, and MI just always returns false, meaning, make
display_gdb_prompt a no-op. We'll need to be able to know to print
the MI prompt in some of the conditions that display_gdb_prompt is
called from the core, but not all.
This is all a litte twisted currently. As we can see,
display_gdb_prompt is really CLI specific, so make the console
interpreters (console/tui) themselves call it. To be able to do that,
and add a few different observers that the interpreters can use to
distinguish when or why the the prompt is being printed:
#1 - one called whenever a command is cancelled due to an error.
#2 - another for when a foreground command just finished.
In both cases, CLI wants to print the prompt, while MI doesn't.
MI will want to print the prompt in the second case when in a special
MI mode.
The display_gdb_prompt call in interp_set made me pause. The comment
there reads:
/* Finally, put up the new prompt to show that we are indeed here.
Also, display_gdb_prompt for the console does some readline magic
which is needed for the console interpreter, at least... */
But, that looks very much like a no-op to me currently:
- the MI interpreter always return false in the prompt hook, meaning
actually display no prompt.
- the interpreter used at that point is still quiet. And the
console/tui interpreters return false in the prompt hook if they're
quiet, meaning actually display no prompt.
The only remaining possible use would then be the readline magic. But
whatever that might have been, it's not reacheable today either,
because display_gdb_prompt returns early, before touching readline if
the interpreter returns false in the display_prompt_p hook.
Tested on x86_64 Fedora 20, sync and async modes.
gdb/
2014-05-29 Pedro Alves <palves@redhat.com>
* cli/cli-interp.c (cli_interpreter_display_prompt_p): Delete.
(_initialize_cli_interp): Adjust.
* event-loop.c: Include "observer.h".
(start_event_loop): Notify 'command_error' observers instead of
calling display_gdb_prompt. Remove FIXME comment.
* event-top.c (display_gdb_prompt): Remove call into the
interpreters.
* inf-loop.c: Include "observer.h".
(inferior_event_handler): Notify 'command_error' observers instead
of calling display_gdb_prompt.
* infrun.c (fetch_inferior_event): Notify 'sync_execution_done'
observers instead of calling display_gdb_prompt.
* interps.c (interp_set): Don't call display_gdb_prompt.
(current_interp_display_prompt_p): Delete.
* interps.h (interp_prompt_p): Delete declaration.
(interp_prompt_p_ftype): Delete.
(struct interp_procs) <prompt_proc_p>: Delete field.
(current_interp_display_prompt_p): Delete declaration.
* mi-interp.c (mi_interpreter_prompt_p): Delete.
(_initialize_mi_interp): Adjust.
* tui-interp.c (tui_init): Install 'sync_execution_done' and
'command_error' observers.
(tui_on_sync_execution_done, tui_on_command_error): New
functions.
(tui_display_prompt_p): Delete.
(_initialize_tui_interp): Adjust.
gdb/doc/
2014-05-29 Pedro Alves <palves@redhat.com>
* observer.texi (sync_execution_done, command_error): New
subjects.
Diffstat (limited to 'gdb/inf-loop.c')
-rw-r--r-- | gdb/inf-loop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/inf-loop.c b/gdb/inf-loop.c index f5293ae..247e9d6 100644 --- a/gdb/inf-loop.c +++ b/gdb/inf-loop.c @@ -31,6 +31,7 @@ #include "continuations.h" #include "interps.h" #include "top.h" +#include "observer.h" static int fetch_inferior_event_wrapper (gdb_client_data client_data); @@ -58,7 +59,7 @@ inferior_event_handler (enum inferior_event_type event_type, do_all_intermediate_continuations (1); do_all_continuations (1); async_enable_stdin (); - display_gdb_prompt (0); + observer_notify_command_error (); } break; |