2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
/* Exception (throw catch) mechanism, for GDB, the GNU debugger.
|
|
|
|
|
|
|
|
Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
|
2005-01-14 21:24:20 +01:00
|
|
|
1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free
|
|
|
|
Software Foundation, Inc.
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
|
|
|
|
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 2 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, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#ifndef EXCEPTIONS_H
|
|
|
|
#define EXCEPTIONS_H
|
|
|
|
|
2005-06-02 18:52:04 +02:00
|
|
|
#include "ui-out.h"
|
2005-02-09 00:44:06 +01:00
|
|
|
#include <setjmp.h>
|
|
|
|
|
2005-01-13 01:12:50 +01:00
|
|
|
/* Reasons for calling throw_exceptions(). NOTE: all reason values
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
must be less than zero. enum value 0 is reserved for internal use
|
|
|
|
as the return value from an initial setjmp(). The function
|
|
|
|
catch_exceptions() reserves values >= 0 as legal results from its
|
|
|
|
wrapped function. */
|
|
|
|
|
|
|
|
enum return_reason
|
|
|
|
{
|
|
|
|
/* User interrupt. */
|
|
|
|
RETURN_QUIT = -2,
|
|
|
|
/* Any other error. */
|
|
|
|
RETURN_ERROR
|
|
|
|
};
|
|
|
|
|
|
|
|
#define RETURN_MASK(reason) (1 << (int)(-reason))
|
|
|
|
#define RETURN_MASK_QUIT RETURN_MASK (RETURN_QUIT)
|
|
|
|
#define RETURN_MASK_ERROR RETURN_MASK (RETURN_ERROR)
|
|
|
|
#define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
|
|
|
|
typedef int return_mask;
|
|
|
|
|
2005-01-13 01:12:50 +01:00
|
|
|
/* Describe all exceptions. */
|
|
|
|
|
|
|
|
enum errors {
|
|
|
|
NO_ERROR,
|
|
|
|
/* Any generic error, the corresponding text is in
|
|
|
|
exception.message. */
|
|
|
|
GENERIC_ERROR,
|
2005-01-14 21:24:20 +01:00
|
|
|
NOT_FOUND_ERROR,
|
2005-03-18 22:03:39 +01:00
|
|
|
|
|
|
|
/* Thread library lacks support necessary for finding thread local
|
|
|
|
storage. */
|
|
|
|
TLS_NO_LIBRARY_SUPPORT_ERROR,
|
|
|
|
|
|
|
|
/* Load module not found while attempting to find thread local storage. */
|
|
|
|
TLS_LOAD_MODULE_NOT_FOUND_ERROR,
|
|
|
|
|
|
|
|
/* Thread local storage has not been allocated yet. */
|
|
|
|
TLS_NOT_ALLOCATED_YET_ERROR,
|
|
|
|
|
|
|
|
/* Something else went wrong while attempting to find thread local
|
2005-04-26 07:03:41 +02:00
|
|
|
storage. The ``struct gdb_exception'' message field provides
|
|
|
|
more detail. */
|
2005-03-18 22:03:39 +01:00
|
|
|
TLS_GENERIC_ERROR,
|
|
|
|
|
2005-01-13 01:12:50 +01:00
|
|
|
/* Add more errors here. */
|
|
|
|
NR_ERRORS
|
|
|
|
};
|
|
|
|
|
2005-04-26 07:03:41 +02:00
|
|
|
struct gdb_exception
|
2005-01-13 01:12:50 +01:00
|
|
|
{
|
|
|
|
enum return_reason reason;
|
|
|
|
enum errors error;
|
2005-01-14 03:33:24 +01:00
|
|
|
const char *message;
|
2005-01-13 01:12:50 +01:00
|
|
|
};
|
|
|
|
|
2005-01-13 03:35:39 +01:00
|
|
|
/* A pre-defined non-exception. */
|
2005-04-26 07:03:41 +02:00
|
|
|
extern const struct gdb_exception exception_none;
|
2005-01-13 03:35:39 +01:00
|
|
|
|
2005-02-09 00:44:06 +01:00
|
|
|
/* Wrap set/long jmp so that it's more portable (internal to
|
|
|
|
exceptions). */
|
|
|
|
|
|
|
|
#if defined(HAVE_SIGSETJMP)
|
|
|
|
#define EXCEPTIONS_SIGJMP_BUF sigjmp_buf
|
|
|
|
#define EXCEPTIONS_SIGSETJMP(buf) sigsetjmp((buf), 1)
|
|
|
|
#define EXCEPTIONS_SIGLONGJMP(buf,val) siglongjmp((buf), (val))
|
|
|
|
#else
|
|
|
|
#define EXCEPTIONS_SIGJMP_BUF jmp_buf
|
|
|
|
#define EXCEPTIONS_SIGSETJMP(buf) setjmp(buf)
|
|
|
|
#define EXCEPTIONS_SIGLONGJMP(buf,val) longjmp((buf), (val))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Functions to drive the exceptions state m/c (internal to
|
|
|
|
exceptions). */
|
|
|
|
EXCEPTIONS_SIGJMP_BUF *exceptions_state_mc_init (struct ui_out *func_uiout,
|
2005-04-26 07:03:41 +02:00
|
|
|
volatile struct gdb_exception *
|
2005-02-09 00:44:06 +01:00
|
|
|
exception,
|
|
|
|
return_mask mask);
|
|
|
|
int exceptions_state_mc_action_iter (void);
|
|
|
|
int exceptions_state_mc_action_iter_1 (void);
|
|
|
|
|
|
|
|
/* Macro to wrap up standard try/catch behavior.
|
|
|
|
|
|
|
|
The double loop lets us correctly handle code "break"ing out of the
|
|
|
|
try catch block. (It works as the "break" only exits the inner
|
|
|
|
"while" loop, the outer for loop detects this handling it
|
|
|
|
correctly.) Of course "return" and "goto" are not so lucky.
|
|
|
|
|
|
|
|
For instance:
|
|
|
|
|
|
|
|
*INDENT-OFF*
|
|
|
|
|
2005-04-26 07:03:41 +02:00
|
|
|
volatile struct gdb_exception e;
|
2005-02-09 00:44:06 +01:00
|
|
|
TRY_CATCH (e, RETURN_MASK_ERROR)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
switch (e.reason)
|
|
|
|
{
|
|
|
|
case RETURN_ERROR: ...
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define TRY_CATCH(EXCEPTION,MASK) \
|
2005-03-09 18:52:54 +01:00
|
|
|
{ \
|
|
|
|
EXCEPTIONS_SIGJMP_BUF *buf = \
|
|
|
|
exceptions_state_mc_init (uiout, &(EXCEPTION), (MASK)); \
|
|
|
|
EXCEPTIONS_SIGSETJMP (*buf); \
|
|
|
|
} \
|
|
|
|
while (exceptions_state_mc_action_iter ()) \
|
|
|
|
while (exceptions_state_mc_action_iter_1 ())
|
2005-02-09 00:44:06 +01:00
|
|
|
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
|
2005-01-14 19:55:33 +01:00
|
|
|
/* If E is an exception, print it's error message on the specified
|
2005-01-14 23:59:36 +01:00
|
|
|
stream. for _fprintf, prefix the message with PREFIX... */
|
2005-04-26 07:03:41 +02:00
|
|
|
extern void exception_print (struct ui_file *file, struct gdb_exception e);
|
|
|
|
extern void exception_fprintf (struct ui_file *file, struct gdb_exception e,
|
2005-01-14 23:59:36 +01:00
|
|
|
const char *prefix,
|
|
|
|
...) ATTR_FORMAT (printf, 3, 4);
|
2005-01-14 19:55:33 +01:00
|
|
|
|
2005-04-26 07:03:41 +02:00
|
|
|
/* Throw an exception (as described by "struct gdb_exception"). Will
|
2005-01-13 01:12:50 +01:00
|
|
|
execute a LONG JUMP to the inner most containing exception handler
|
|
|
|
established using catch_exceptions() (or similar).
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
|
|
|
|
Code normally throws an exception using error() et.al. For various
|
|
|
|
reaons, GDB also contains code that throws an exception directly.
|
|
|
|
For instance, the remote*.c targets contain CNTRL-C signal handlers
|
|
|
|
that propogate the QUIT event up the exception chain. ``This could
|
2005-01-13 01:12:50 +01:00
|
|
|
be a good thing or a dangerous thing.'' -- the Existential
|
|
|
|
Wombat. */
|
|
|
|
|
2005-04-26 07:03:41 +02:00
|
|
|
extern NORETURN void throw_exception (struct gdb_exception exception) ATTR_NORETURN;
|
From Kaveh R. Ghazi <ghazi@caip.rutgers.edu>:
gdb/
* cli-out.c (cli_field_fmt, cli_message, out_field_fmt): Add
ATTR_FORMAT or ATTRIBUTE_FPTR_PRINTF.
* complaints.c (vcomplaint): Likewise.
* defs.h (xvasprintf, xstrvprintf, verror, vfatal)
(internal_verror, internal_vwarning, vwarning)
(deprecated_query_hook, deprecated_warning_hook)
(deprecated_readline_begin_hook): Likewise.
* disasm.c (fprintf_disasm): Likewise.
* exceptions.c (throw_it): Likewise.
* exceptions.h (throw_verror, throw_vfatal): Likewise.
* mi/mi-interp.c (mi_interp_query_hook): Likewise.
* mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
* tui/tui-hooks.c (tui_query_hook): Likewise.
* tui/tui-out.c (tui_field_fmt, tui_message, out_field_fmt):
Likewise.
* ui-out.c (default_field_fmt, default_message, uo_field_fmt)
(uo_message): Likewise.
* ui-out.h (ui_out_field_fmt, ui_out_message, field_fmt_ftype)
(message_ftype): Likewise.
* utils.c (vfprintf_maybe_filtered, internal_vproblem)
(defaulted_query, printchar): Likewise.
gdb/gdbserver/
* server.h (error, fatal, warning): Add ATTR_FORMAT.
2005-07-31 22:56:26 +02:00
|
|
|
extern NORETURN void throw_verror (enum errors, const char *fmt, va_list ap)
|
|
|
|
ATTR_NORETURN ATTR_FORMAT (printf, 2, 0);
|
|
|
|
extern NORETURN void throw_vfatal (const char *fmt, va_list ap)
|
|
|
|
ATTR_NORETURN ATTR_FORMAT (printf, 1, 0);
|
2005-01-14 21:24:20 +01:00
|
|
|
extern NORETURN void throw_error (enum errors error, const char *fmt,
|
|
|
|
...) ATTR_NORETURN ATTR_FORMAT (printf, 2, 3);
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
|
2005-01-19 22:15:44 +01:00
|
|
|
/* Instead of deprecated_throw_reason, code should use catch_exception
|
|
|
|
and throw_exception. */
|
|
|
|
extern NORETURN void deprecated_throw_reason (enum return_reason reason) ATTR_NORETURN;
|
|
|
|
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
/* Call FUNC(UIOUT, FUNC_ARGS) but wrapped within an exception
|
|
|
|
handler. If an exception (enum return_reason) is thrown using
|
|
|
|
throw_exception() than all cleanups installed since
|
|
|
|
catch_exceptions() was entered are invoked, the (-ve) exception
|
|
|
|
value is then returned by catch_exceptions. If FUNC() returns
|
|
|
|
normally (with a postive or zero return value) then that value is
|
|
|
|
returned by catch_exceptions(). It is an internal_error() for
|
|
|
|
FUNC() to return a negative value.
|
|
|
|
|
|
|
|
For the period of the FUNC() call: UIOUT is installed as the output
|
|
|
|
builder; ERRSTRING is installed as the error/quit message; and a
|
|
|
|
new cleanup_chain is established. The old values are restored
|
|
|
|
before catch_exceptions() returns.
|
|
|
|
|
|
|
|
The variant catch_exceptions_with_msg() is the same as
|
|
|
|
catch_exceptions() but adds the ability to return an allocated
|
|
|
|
copy of the gdb error message. This is used when a silent error is
|
|
|
|
issued and the caller wants to manually issue the error message.
|
|
|
|
|
|
|
|
FIXME; cagney/2001-08-13: The need to override the global UIOUT
|
|
|
|
builder variable should just go away.
|
|
|
|
|
|
|
|
This function superseeds catch_errors().
|
|
|
|
|
|
|
|
This function uses SETJMP() and LONGJUMP(). */
|
|
|
|
|
|
|
|
struct ui_out;
|
|
|
|
typedef int (catch_exceptions_ftype) (struct ui_out *ui_out, void *args);
|
|
|
|
extern int catch_exceptions (struct ui_out *uiout,
|
|
|
|
catch_exceptions_ftype *func, void *func_args,
|
2005-01-15 00:27:14 +01:00
|
|
|
return_mask mask);
|
2005-01-13 01:12:50 +01:00
|
|
|
typedef void (catch_exception_ftype) (struct ui_out *ui_out, void *args);
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
extern int catch_exceptions_with_msg (struct ui_out *uiout,
|
|
|
|
catch_exceptions_ftype *func,
|
|
|
|
void *func_args,
|
2005-01-15 00:27:14 +01:00
|
|
|
char **gdberrmsg,
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
return_mask mask);
|
2005-01-14 19:55:33 +01:00
|
|
|
|
|
|
|
/* This function, in addition, suppresses the printing of the captured
|
|
|
|
error message. It's up to the client to print it. */
|
|
|
|
|
2005-04-26 07:03:41 +02:00
|
|
|
extern struct gdb_exception catch_exception (struct ui_out *uiout,
|
|
|
|
catch_exception_ftype *func,
|
|
|
|
void *func_args,
|
|
|
|
return_mask mask);
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
|
|
|
|
/* If CATCH_ERRORS_FTYPE throws an error, catch_errors() returns zero
|
|
|
|
otherwize the result from CATCH_ERRORS_FTYPE is returned. It is
|
|
|
|
probably useful for CATCH_ERRORS_FTYPE to always return a non-zero
|
|
|
|
value. It's unfortunate that, catch_errors() does not return an
|
|
|
|
indication of the exact exception that it caught - quit_flag might
|
|
|
|
help.
|
|
|
|
|
|
|
|
This function is superseeded by catch_exceptions(). */
|
|
|
|
|
|
|
|
typedef int (catch_errors_ftype) (void *);
|
|
|
|
extern int catch_errors (catch_errors_ftype *, void *, char *, return_mask);
|
|
|
|
|
|
|
|
/* Template to catch_errors() that wraps calls to command
|
|
|
|
functions. */
|
|
|
|
|
|
|
|
typedef void (catch_command_errors_ftype) (char *, int);
|
|
|
|
extern int catch_command_errors (catch_command_errors_ftype *func, char *command, int from_tty, return_mask);
|
|
|
|
|
|
|
|
#endif
|