Make hardware watchpoint support work again on Linux/IA-64.
authorKevin Buettner <kevinb@redhat.com>
Sat, 31 Mar 2001 21:53:39 +0000 (21:53 +0000)
committerKevin Buettner <kevinb@redhat.com>
Sat, 31 Mar 2001 21:53:39 +0000 (21:53 +0000)
gdb/ChangeLog
gdb/ia64-linux-nat.c

index c4b171272d065c571d9c81d027b928183a22731d..13c69c4d84aeece57a4b45197de3f12da2ea27c3 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-31  Kevin Buettner  <kevinb@redhat.com>
+
+       * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Change
+       TRAP_HWBKPT constant to match that in the kernel headers for
+       Linux/IA-64.
 2001-03-31  Mark Kettenis  <kettenis@gnu.org>
 
        * i386bsd-nat.c: Include "gdb_assert.h".
index 50217f125826f9c26d66b66bb61b90cab55aa650..7fe28d11581bac59cae516e3ea0f4f46d75ef84f 100644 (file)
@@ -630,7 +630,7 @@ ia64_linux_stopped_by_watchpoint (int pid)
   errno = 0;
   ptrace (PTRACE_GETSIGINFO, tid, (PTRACE_ARG3_TYPE) 0, &siginfo);
 
-  if (errno != 0 || siginfo.si_code != 4 /* TRAP_HWBKPT */)
+  if (errno != 0 || siginfo.si_code != 0x30004 /* TRAP_HWBKPT */)
     return 0;
 
   psr = read_register_pid (IA64_PSR_REGNUM, pid);