diff options
author | Pedro Alves <palves@redhat.com> | 2016-04-12 17:17:13 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-04-12 17:17:13 +0100 |
commit | 2afc13ff80492278154c0f2156a9d32dd5ba675a (patch) | |
tree | b11b25ea5ce1ba84fcf1d1d65fc08782ab953500 /gdb/gdbserver | |
parent | cfd0fbddb025d36228d02fe23e06039acc6104e4 (diff) | |
download | binutils-2afc13ff80492278154c0f2156a9d32dd5ba675a.zip binutils-2afc13ff80492278154c0f2156a9d32dd5ba675a.tar.gz binutils-2afc13ff80492278154c0f2156a9d32dd5ba675a.tar.bz2 |
Eliminate prepare_to_throw_exception
No longer necessary.
gdb/ChangeLog:
2016-04-12 Pedro Alves <palves@redhat.com>
* common/common-exceptions.c (exception_rethrow): Remove
prepare_to_throw_exception call.
* common/common-exceptions.h (prepare_to_throw_exception): Delete
declaration.
* exceptions.c (prepare_to_throw_exception): Delete.
gdb/gdbserver/ChangeLog:
2016-04-12 Pedro Alves <palves@redhat.com>
* utils.c (prepare_to_throw_exception): Delete.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbserver/utils.c | 8 |
2 files changed, 4 insertions, 8 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 8b8c2c1..0d2df72 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2016-04-12 Pedro Alves <palves@redhat.com> + + * utils.c (prepare_to_throw_exception): Delete. + 2016-04-05 Simon Marchi <simon.marchi@ericsson.com> * Makefile.in ($(IPA_LIB)): Set SONAME of the IPA lib. diff --git a/gdb/gdbserver/utils.c b/gdb/gdbserver/utils.c index 59bb323..37b9c89 100644 --- a/gdb/gdbserver/utils.c +++ b/gdb/gdbserver/utils.c @@ -137,11 +137,3 @@ pfildes (gdb_fildes_t fd) return plongest (fd); #endif } - -/* See common/common-exceptions.h. */ - -void -prepare_to_throw_exception (void) -{ - /* No client-specific actions required. */ -} |