Current Path : /usr/src/gnu/usr.bin/gdb/libgdb/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/gnu/usr.bin/gdb/libgdb/frame-unwind.diff |
$FreeBSD: release/9.1.0/gnu/usr.bin/gdb/libgdb/frame-unwind.diff 149954 2005-09-10 18:25:53Z marcel $ 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; }