aboutsummaryrefslogtreecommitdiff
path: root/gdb/common/common-exceptions.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-02-09 14:59:12 +0000
committerPedro Alves <palves@redhat.com>2015-02-27 17:43:10 +0000
commitad6aff7dead678cc0fa4f786fa59c6040c6fa758 (patch)
tree606bde04e1aeaaf96e07dbe7d1f2a47f8efc4af7 /gdb/common/common-exceptions.c
parent97c185659a35d249aa20c89674e3da2baf4b4352 (diff)
downloadbinutils-ad6aff7dead678cc0fa4f786fa59c6040c6fa758.zip
binutils-ad6aff7dead678cc0fa4f786fa59c6040c6fa758.tar.gz
binutils-ad6aff7dead678cc0fa4f786fa59c6040c6fa758.tar.bz2
Move exception_none to common code, and use it
gdb/ChangeLog: 2015-02-27 Pedro Alves <palves@redhat.com> * common/common-exceptions.h (exception_none): Declare. * common/common-exceptions.c (exception_none): Moved from exceptions.c. (exceptions_state_mc_init): Use exception_none. * exceptions.c (exception_none): Move to common/common-exceptions.c. * exceptions.h (exception_none): Move to common/common-exceptions.h.
Diffstat (limited to 'gdb/common/common-exceptions.c')
-rw-r--r--gdb/common/common-exceptions.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/common/common-exceptions.c b/gdb/common/common-exceptions.c
index 4308b91..b65f259 100644
--- a/gdb/common/common-exceptions.c
+++ b/gdb/common/common-exceptions.c
@@ -20,6 +20,8 @@
#include "common-defs.h"
#include "common-exceptions.h"
+const struct gdb_exception exception_none = { 0, GDB_NO_ERROR, NULL };
+
/* Possible catcher states. */
enum catcher_state {
/* Initial state, a new catcher has just been created. */
@@ -78,9 +80,7 @@ exceptions_state_mc_init (volatile struct gdb_exception *exception,
struct catcher *new_catcher = XCNEW (struct catcher);
/* Start with no exception, save it's address. */
- exception->reason = 0;
- exception->error = GDB_NO_ERROR;
- exception->message = NULL;
+ *exception = exception_none;
new_catcher->exception = exception;
new_catcher->mask = mask;