mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 11:04:18 +08:00
0963b4bd45
* ada-lang.c: Comment cleanup, mostly periods and spaces. * ada-lang.h: Ditto. * ada-tasks.c: Ditto. * ada-valprint.c: Ditto. * aix-threads.c: Ditto. * alpha-linux-nat.c: Ditto. * alpha-linux-tdep.c: Ditto. * alpha-mdebug-tdep.c: Ditto. * alpha-nat.c: Ditto. * alpha-osf1-tdep.c: Ditto. * alpha-tdep.c: Ditto. * alphabsd-nat.c: Ditto. * alphabsd-tdep.c: Ditto. * amd64-darwin-tdep.c: Ditto. * amd64-linux-nat.c: Ditto. * amd64-linux-tdep.c: Ditto. * amd64-sol2-tdep.c: Ditto. * amd64-tdep.c: Ditto. * amd64-fbsd-tdep.c: Ditto. * amd64-nbsd-tdep.c: Ditto. * amd64-obsd-tdep.c: Ditto. * amd64-linux-nat.c: Ditto. * amd64-linux-tdep.c: Ditto. * arm-tdep.c: Ditto. * arm-tdep.h: Ditto. * armnbsd-nat.c: Ditto. * avr-tdep.c: Ditto. * bfin-tdep.c: Ditto. * bsd-kvm.c: Ditto. * c-typeprintc: Ditto. * c-valprint.c: Ditto. * coff-pe-read.h: Ditto. * coffreead.c: Ditto. * cris-tdep.c: Ditto. * d-lang.c: Ditto. * darwin-nat-info.c: Ditto. * darwin-nat.c: Ditto. * dbug-rom.c: Ditto. * dbxread.c: Ditto. * dcache.c: Ditto. * dcache.h: Ditto. * dec-thread.c: Ditto. * defs.h: Ditto. * demangle.c: Ditto. * dicos-tdep.c: Ditto. * dictionary.c: Ditto. * dictionary.h: Ditto. * dink32-rom.c: Ditto. * disasm.c: Ditto. * doublest.c: Ditto. * dsrec.c: Ditto. * dummy-frame.c: Ditto. * dwarf2-frame.c: Ditto. * dwarf2expr.c: Ditto. * dwarf2loc.c: Ditto. * dwarf2read.c: Ditto. * elfread.c: Ditto. * environ.c: Ditto. * eval.c: Ditto. * event-top.h: Ditto. * exceptions.c: Ditto. * exceptions.h: Ditto. * exec.c: Ditto. * expprint.c: Ditto. * expression.h: Ditto. * f-exp.y: Ditto. * f-lang.c: Ditto. * f-lang.h: Ditto. * f-typeprint.c: Ditto. * f-valprint.c: Ditto. * fbsd-nat.c: Ditto. * findvar.c: Ditto. * fork-child.c: Ditto. * frame.c: Ditto. * frame.h: Ditto. * frv-linux-tdep.c: Ditto. * frv-tdep.c: Ditto. * gcore.c: Ditto. * gdb-stabs.h: Ditto. * gdb_assert.h: Ditto. * gdb_string.h: Ditto. * gdb_thread_db.h: Ditto. * gdb_wait.h: Ditto. * gdbarch.sh: Ditto. * gdbcore.h: Ditto. * gdbthread.h: Ditto. * gdbtypes.c: Ditto. * gdbtypes.h: Ditto. * gnu-nat.c: Ditto. * gnu-nat.h: Ditto. * gnu-v2-abi.c: Ditto. * gnu-v3-abi.c: Ditto. * go32-nat.c: Ditto. * gdbarch.c: Regenerate. * gdbarch.h: Regenerate.
125 lines
4.9 KiB
C
125 lines
4.9 KiB
C
/* Definitions used by event-top.c, for GDB, the GNU debugger.
|
|
|
|
Copyright (C) 1999, 2001, 2003, 2007, 2008, 2009, 2010, 2011
|
|
Free Software Foundation, Inc.
|
|
|
|
Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef EVENT_TOP_H
|
|
#define EVENT_TOP_H
|
|
|
|
struct cmd_list_element;
|
|
|
|
/* Stack for prompts. Each prompt is composed as a prefix, a prompt
|
|
and a suffix. The prompt to be displayed at any given time is the
|
|
one on top of the stack. A stack is necessary because of cases in
|
|
which the execution of a gdb command requires further input from
|
|
the user, like for instance 'commands' for breakpoints and
|
|
'actions' for tracepoints. In these cases, the prompt is '>' and
|
|
gdb should process input using the asynchronous readline interface
|
|
and the event loop. In order to achieve this, we need to save
|
|
somewhere the state of GDB, i.e. that it is processing user input
|
|
as part of a command and not as part of the top level command loop.
|
|
The prompt stack represents part of the saved state. Another part
|
|
would be the function that readline would invoke after a whole line
|
|
of input has ben entered. This second piece would be something
|
|
like, for instance, where to return within the code for the actions
|
|
commands after a line has been read. This latter portion has not
|
|
beeen implemented yet. The need for a 3-part prompt arises from
|
|
the annotation level. When this is set to 2, the prompt is
|
|
actually composed of a prefix, the prompt itself and a suffix. */
|
|
|
|
/* At any particular time there will be always at least one prompt on
|
|
the stack, the one being currently displayed by gdb. If gdb is
|
|
using annotation level equal 2, there will be 2 prompts on the
|
|
stack: the usual one, w/o prefix and suffix (at top - 1), and the
|
|
'composite' one with prefix and suffix added (at top). At this
|
|
time, this is the only use of the prompt stack. Resetting annotate
|
|
to 0 or 1, pops the top of the stack, resetting its size to one
|
|
element. The MAXPROMPTS limit is safe, for now. Once other cases
|
|
are dealt with (like the different prompts used for 'commands' or
|
|
'actions') this array implementation of the prompt stack may have
|
|
to change. */
|
|
|
|
#define MAXPROMPTS 10
|
|
struct prompts
|
|
{
|
|
struct
|
|
{
|
|
char *prefix;
|
|
char *prompt;
|
|
char *suffix;
|
|
}
|
|
prompt_stack[MAXPROMPTS];
|
|
int top;
|
|
};
|
|
|
|
#define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
|
|
#define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
|
|
#define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
|
|
|
|
/* Exported functions from event-top.c.
|
|
FIXME: these should really go into top.h. */
|
|
|
|
extern void display_gdb_prompt (char *new_prompt);
|
|
void gdb_setup_readline (void);
|
|
void gdb_disable_readline (void);
|
|
extern void async_init_signals (void);
|
|
extern void set_async_editing_command (char *args, int from_tty,
|
|
struct cmd_list_element *c);
|
|
extern void set_async_annotation_level (char *args, int from_tty,
|
|
struct cmd_list_element *c);
|
|
extern void set_async_prompt (char *args, int from_tty,
|
|
struct cmd_list_element *c);
|
|
|
|
/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
|
|
#ifndef STOP_SIGNAL
|
|
#include <signal.h>
|
|
#ifdef SIGTSTP
|
|
#define STOP_SIGNAL SIGTSTP
|
|
extern void handle_stop_sig (int sig);
|
|
#endif
|
|
#endif
|
|
extern void handle_sigint (int sig);
|
|
extern void handle_sigterm (int sig);
|
|
extern void pop_prompt (void);
|
|
extern void push_prompt (char *prefix, char *prompt, char *suffix);
|
|
extern void gdb_readline2 (void *client_data);
|
|
extern void mark_async_signal_handler_wrapper (void *token);
|
|
extern void async_request_quit (void *arg);
|
|
extern void stdin_event_handler (int error, void *client_data);
|
|
extern void async_disable_stdin (void);
|
|
extern void async_enable_stdin (void);
|
|
|
|
/* Exported variables from event-top.c.
|
|
FIXME: these should really go into top.h. */
|
|
|
|
extern int async_command_editing_p;
|
|
extern int exec_done_display_p;
|
|
extern char *async_annotation_suffix;
|
|
extern char *new_async_prompt;
|
|
extern struct prompts the_prompts;
|
|
extern void (*call_readline) (void *);
|
|
extern void (*input_handler) (char *);
|
|
extern int input_fd;
|
|
extern void (*after_char_processing_hook) (void);
|
|
|
|
extern void cli_command_loop (void);
|
|
|
|
#endif
|