aboutsummaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2009-02-20 10:52:24 +0000
committerPierre Muller <muller@sourceware.org>2009-02-20 10:52:24 +0000
commit5aca5a820ad1f68a0f17f419ea74fe8df22c049a (patch)
treeaef22dc13bb878809e1ef09c932e6e3288b2c764 /gdb/windows-nat.c
parentea5fb460c96020ad541744c9544c7439bd7a4287 (diff)
downloadgdb-5aca5a820ad1f68a0f17f419ea74fe8df22c049a.zip
gdb-5aca5a820ad1f68a0f17f419ea74fe8df22c049a.tar.gz
gdb-5aca5a820ad1f68a0f17f419ea74fe8df22c049a.tar.bz2
* Extend use of i386_use_watchpoints to all i386 native files
using hardware watchpoints. go32-nat.c (init_go32_ops): Call i386_use_watchpoints. i386fbsd-nat.c (_initialize_i386fbsd_nat): Ditto. windows-nat.c (init_windows_ops): Ditto. config/i386/nm-cygwin.h: Define I386_WATCHPOINTS_IN_TARGET_VECTOR. config/i386/nm-cygwin64.h: Ditto. config/i386/nm-fbsd.h: Ditto. config/i386/nm-go32.h: Ditto.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r--gdb/windows-nat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 7398d6a..ef9ef9d 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -2135,6 +2135,8 @@ init_windows_ops (void)
windows_ops.to_has_registers = 1;
windows_ops.to_has_execution = 1;
windows_ops.to_pid_to_exec_file = windows_pid_to_exec_file;
+ i386_use_watchpoints (&windows_ops);
+
windows_ops.to_magic = OPS_MAGIC;
}