* linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
authorDaniel Jacobowitz <drow@false.org>
Sun, 29 Feb 2004 16:43:49 +0000 (16:43 +0000)
committerDaniel Jacobowitz <drow@false.org>
Sun, 29 Feb 2004 16:43:49 +0000 (16:43 +0000)
gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-arm-low.c

index e0f2f98d972a6e5d4bdc6ecf08d6a9c2ae872e01..63bbc91c76e499e5fad5a22840e6f2b421474c29 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-28  Daniel Jacobowitz  <drow@mvista.com>
+
+       * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
+
 2004-02-26  Daniel Jacobowitz  <drow@mvista.com>
 
        * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
index 2e8bb981b520a08b57fe718754778f64adca0736..f091a3dccc34a797f04773f320d9dfdf76c916c3 100644 (file)
@@ -1,5 +1,5 @@
 /* GNU/Linux/ARM specific low level interface, for the remote server for GDB.
-   Copyright 1995, 1996, 1998, 1999, 2000, 2001, 2002
+   Copyright 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004
    Free Software Foundation, Inc.
 
    This file is part of GDB.
@@ -47,11 +47,15 @@ arm_cannot_fetch_register (int regno)
   return (regno >= arm_num_regs);
 }
 
+extern int debug_threads;
+
 static CORE_ADDR
 arm_get_pc ()
 {
   unsigned long pc;
   collect_register_by_name ("pc", &pc);
+  if (debug_threads)
+    fprintf (stderr, "stop pc is %08lx\n", pc);
   return pc;
 }