diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-04-26 05:03:41 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-04-26 05:03:41 +0000 |
commit | 71fff37b08f261319956b121244752a31940b7d3 (patch) | |
tree | 3919050a2c2b657c32f52f83262fb41c2efd6100 /gdb/interps.h | |
parent | c631edf1cc79aa305924c762642b9160cae94e2d (diff) | |
download | gdb-71fff37b08f261319956b121244752a31940b7d3.zip gdb-71fff37b08f261319956b121244752a31940b7d3.tar.gz gdb-71fff37b08f261319956b121244752a31940b7d3.tar.bz2 |
2005-04-26 Andrew Cagney <cagney@gnu.org>
Rename 'struct exception' to 'struct gdb_exception'.
* wrapper.c: Update.
* varobj.c: Update.
* tui/tui-interp.c: Update.
* remote.c: Update.
* mi/mi-main.c: Update.
* mi/mi-interp.c: Update.
* linux-thread-db.c: Update.
* interps.h: Update.
* interps.c: Update.
* exceptions.h: Update.
* exceptions.c: Update.
* dwarf2loc.c: Update.
* cli/cli-interp.c: Update.
* cli/cli-script.c: Update.
* breakpoint.c: Update.
Diffstat (limited to 'gdb/interps.h')
-rw-r--r-- | gdb/interps.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/interps.h b/gdb/interps.h index 9ef68a6..858c1e4 100644 --- a/gdb/interps.h +++ b/gdb/interps.h @@ -33,15 +33,16 @@ extern int interp_resume (struct interp *interp); extern int interp_suspend (struct interp *interp); extern int interp_prompt_p (struct interp *interp); extern int interp_exec_p (struct interp *interp); -extern struct exception interp_exec (struct interp *interp, - const char *command); +extern struct gdb_exception interp_exec (struct interp *interp, + const char *command); extern int interp_quiet_p (struct interp *interp); typedef void *(interp_init_ftype) (void); typedef int (interp_resume_ftype) (void *data); typedef int (interp_suspend_ftype) (void *data); typedef int (interp_prompt_p_ftype) (void *data); -typedef struct exception (interp_exec_ftype) (void *data, const char *command); +typedef struct gdb_exception (interp_exec_ftype) (void *data, + const char *command); typedef void (interp_command_loop_ftype) (void *data); struct interp_procs |