* python.c (source_python_script): Add comment.
[deliverable/binutils-gdb.git] / gdb / dummy-frame.c
index 6e63686c111dd601284fe66cca94e573c2225f2e..d6a7241369fed3a6e654ec32a1518c9997445e80 100644 (file)
@@ -1,8 +1,8 @@
 /* Code dealing with dummy stack frames, for GDB, the GNU debugger.
 
    Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
-   1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009
-   Free Software Foundation, Inc.
+   1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009,
+   2010 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -66,16 +66,17 @@ static struct dummy_frame *dummy_frame_stack = NULL;
    NOTE: cagney/2004-08-02: Code should not need to call this.  */
 
 int
-deprecated_pc_in_call_dummy (CORE_ADDR pc)
+deprecated_pc_in_call_dummy (struct gdbarch *gdbarch, CORE_ADDR pc)
 {
   struct dummy_frame *dummyframe;
+
   for (dummyframe = dummy_frame_stack;
        dummyframe != NULL;
        dummyframe = dummyframe->next)
     {
       if ((pc >= dummyframe->id.code_addr)
          && (pc <= dummyframe->id.code_addr
-                   + gdbarch_decr_pc_after_break (current_gdbarch)))
+                   + gdbarch_decr_pc_after_break (gdbarch)))
        return 1;
     }
   return 0;
@@ -217,6 +218,7 @@ dummy_frame_sniffer (const struct frame_unwind *self,
          if (frame_id_eq (dummyframe->id, this_id))
            {
              struct dummy_frame_cache *cache;
+
              cache = FRAME_OBSTACK_ZALLOC (struct dummy_frame_cache);
              cache->prev_regcache = get_inferior_thread_state_regcache (dummyframe->caller_state);
              cache->this_id = this_id;
@@ -267,6 +269,7 @@ dummy_frame_this_id (struct frame_info *this_frame,
 {
   /* The dummy-frame sniffer always fills in the cache.  */
   struct dummy_frame_cache *cache = (*this_prologue_cache);
+
   gdb_assert (cache != NULL);
   (*this_id) = cache->this_id;
 }
@@ -288,6 +291,7 @@ static void
 fprint_dummy_frames (struct ui_file *file)
 {
   struct dummy_frame *s;
+
   for (s = dummy_frame_stack; s != NULL; s = s->next)
     {
       gdb_print_host_address (s, file);
@@ -307,6 +311,7 @@ maintenance_print_dummy_frames (char *args, int from_tty)
     {
       struct cleanup *cleanups;
       struct ui_file *file = gdb_fopen (args, "w");
+
       if (file == NULL)
        perror_with_name (_("maintenance print dummy-frames"));
       cleanups = make_cleanup_ui_file_delete (file);
This page took 0.025035 seconds and 4 git commands to generate.