diff options
author | Keith Seitz <keiths@redhat.com> | 2002-09-27 20:07:48 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2002-09-27 20:07:48 +0000 |
commit | 512d68b524317afb37a76e128f7cc1d96016e0bc (patch) | |
tree | 55cd122d141a96e56ffbd25ef76b223319a104a7 /gdb/gdbtk | |
parent | 2be129a66b527d88a92907688d2de71e86e7b251 (diff) | |
download | gdb-512d68b524317afb37a76e128f7cc1d96016e0bc.tar.gz |
* generic/gdbtk-hooks.c (gdbtk_add_hooks): Add gdbtk_annotate_signal
as annotate_signalled_hook.
Diffstat (limited to 'gdb/gdbtk')
-rw-r--r-- | gdb/gdbtk/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbtk/generic/gdbtk-hooks.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbtk/ChangeLog b/gdb/gdbtk/ChangeLog index 04823f1a625..daa366e5cb0 100644 --- a/gdb/gdbtk/ChangeLog +++ b/gdb/gdbtk/ChangeLog @@ -1,3 +1,8 @@ +2002-09-27 Keith Seitz <keiths@redhat.com> + + * generic/gdbtk-hooks.c (gdbtk_add_hooks): Add gdbtk_annotate_signal + as annotate_signalled_hook. + 2002-09-26 Andrew Cagney <ac131313@redhat.com> From Grace Sainsbury <graces@redhat.com>: diff --git a/gdb/gdbtk/generic/gdbtk-hooks.c b/gdb/gdbtk/generic/gdbtk-hooks.c index 433236bfafc..8f41b285135 100644 --- a/gdb/gdbtk/generic/gdbtk-hooks.c +++ b/gdb/gdbtk/generic/gdbtk-hooks.c @@ -168,6 +168,7 @@ gdbtk_add_hooks (void) error_begin_hook = gdbtk_error_begin; annotate_signal_hook = gdbtk_annotate_signal; + annotate_signalled_hook = gdbtk_annotate_signal; } /* These control where to put the gdb output which is created by |