X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fframe-unwind.c;h=7330078d6cee2640454b819aad325fcd4c408e32;hb=064f515651b1e730c60652eaf07f94c22841d475;hp=166219ae5442ca8e231a3723b6bdd76c85984b31;hpb=c1bf6f652724207f32494a8304ca7693148d0e3d;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/frame-unwind.c b/gdb/frame-unwind.c index 166219ae54..7330078d6c 100644 --- a/gdb/frame-unwind.c +++ b/gdb/frame-unwind.c @@ -1,6 +1,6 @@ /* Definitions for frame unwinder, for GDB, the GNU debugger. - Copyright 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. This file is part of GDB. @@ -16,8 +16,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ #include "defs.h" #include "frame.h" @@ -50,7 +50,7 @@ frame_unwind_init (struct obstack *obstack) /* Start the table out with a few default sniffers. OSABI code can't override this. */ table->list = OBSTACK_ZALLOC (obstack, struct frame_unwind_table_entry); - table->list->sniffer = dummy_frame_sniffer; + table->list->unwinder = dummy_frame_unwind; /* The insertion point for OSABI sniffers. */ table->osabi_head = &table->list->next; return table; @@ -106,7 +106,7 @@ frame_unwind_find_by_frame (struct frame_info *next_frame, void **this_cache) return entry->unwinder; } } - internal_error (__FILE__, __LINE__, "frame_unwind_find_by_frame failed"); + internal_error (__FILE__, __LINE__, _("frame_unwind_find_by_frame failed")); } extern initialize_file_ftype _initialize_frame_unwind; /* -Wmissing-prototypes */