diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-09-11 17:50:21 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-09-11 17:50:21 +0000 |
commit | 44440d8f55172b5f1f4daa8e6c81e546d397d12a (patch) | |
tree | 42838ffc51274ec38091f093c8649333edc2299f /gnu | |
parent | 25095198b5f3ecb09975787eae1e8eb67356446b (diff) | |
download | FreeBSD-src-44440d8f55172b5f1f4daa8e6c81e546d397d12a.zip FreeBSD-src-44440d8f55172b5f1f4daa8e6c81e546d397d12a.tar.gz |
This commit was manufactured by cvs2svn to create branch 'RELENG_6'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gdb/libgdb/frame-unwind.diff | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/usr.bin/gdb/libgdb/frame-unwind.diff b/gnu/usr.bin/gdb/libgdb/frame-unwind.diff new file mode 100644 index 0000000..8143c55 --- /dev/null +++ b/gnu/usr.bin/gdb/libgdb/frame-unwind.diff @@ -0,0 +1,27 @@ +$FreeBSD$ + +Index: frame-unwind.c +=================================================================== +RCS file: /home/ncvs/src/contrib/gdb/gdb/frame-unwind.c,v +retrieving revision 1.1.1.1 +diff -u -r1.1.1.1 frame-unwind.c +--- frame-unwind.c 20 Jun 2004 18:16:58 -0000 1.1.1.1 ++++ frame-unwind.c 10 Sep 2005 06:36:55 -0000 +@@ -27,6 +27,8 @@ + + static struct gdbarch_data *frame_unwind_data; + ++frame_unwind_sniffer_ftype *kgdb_sniffer_kluge; ++ + struct frame_unwind_table + { + frame_unwind_sniffer_ftype **sniffer; +@@ -49,6 +51,8 @@ + { + struct frame_unwind_table *table = XCALLOC (1, struct frame_unwind_table); + append_predicate (table, dummy_frame_sniffer); ++ if (kgdb_sniffer_kluge != NULL) ++ append_predicate (table, kgdb_sniffer_kluge); + return table; + } + |