This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix breakpoint after "dll" command problem


008-06-23  Christopher Faylor  <me.gdb.changelog@cgf.cx>

        * win32-nat.c (safe_symbol_file_add_stub): Remove unused variable.
        (do_initial_win32_stuff): Fix problem with inability to set breakpoints
        when first loading DLL with "dll" command.

Index: win32-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/win32-nat.c,v
retrieving revision 1.154
diff -d -u -p -r1.154 win32-nat.c
--- win32-nat.c	19 Jun 2008 06:36:45 -0000	1.154
+++ win32-nat.c	24 Jun 2008 02:31:40 -0000
@@ -556,8 +556,6 @@ static int
 safe_symbol_file_add_stub (void *argv)
 {
 #define p ((struct safe_symbol_file_add_args *) argv)
-  struct so_list *so = &solib_start;
-
   p->ret = symbol_file_add (p->name, p->from_tty, p->addrs, p->mainline, p->flags);
   return !!p->ret;
 #undef p
@@ -1525,6 +1523,7 @@ do_initial_win32_stuff (DWORD pid)
   terminal_init_inferior_with_pgrp (pid);
   target_terminal_inferior ();
 
+  stop_soon = STOP_QUIETLY;
   while (1)
     {
       stop_after_trap = 1;
@@ -1534,6 +1533,8 @@ do_initial_win32_stuff (DWORD pid)
       else
 	break;
     }
+
+  stop_soon = NO_STOP_QUIETLY;
   stop_after_trap = 0;
   return;
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]