Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: "Pierre Muller" <muller@ics.u-strasbg.fr>
To: "'Mark Kettenis'" <mark.kettenis@xs4all.nl>
Cc: <gdb-patches@sourceware.org>
Subject: RE: [RFA] Use i386_use_watchpoints for go32v2, bds and windows native
Date: Mon, 09 Feb 2009 12:34:00 -0000	[thread overview]
Message-ID: <000001c98ab2$bcf2f2a0$36d8d7e0$@u-strasbg.fr> (raw)
In-Reply-To: <200902091106.n19B6sLe015739@brahms.sibelius.xs4all.nl>



> -----Message d'origine-----
> De : gdb-patches-owner@sourceware.org [mailto:gdb-patches-
> owner@sourceware.org] De la part de Mark Kettenis
> Envoyé : Monday, February 09, 2009 12:07 PM
> À : muller@ics.u-strasbg.fr
> Cc : gdb-patches@sourceware.org
> Objet : Re: [RFA] Use i386_use_watchpoints for go32v2, bds and windows
> native
> 
> > From: "Pierre Muller" <muller@ics.u-strasbg.fr>
> > Date: Mon, 9 Feb 2009 00:22:50 +0100
> >
> > ChangeLog entry:
> >
> > 2009-02-08  Pierre Muller  <muller@ics.u-strasbg.fr>
> >
> > 	* Extend use of i386_use_watchpoints to all i386 native files
> > 	using hardware watchpoints.
> > 	go32-nat.c (init_go32_ops): Call i386_use_watchpoints.
> > 	i386bsd-nat.c (i386bsd_target): 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.
> 
> Only FreeBSD has hardware watchpoint support, so your change to
> i386bsd-nat.c isn't quite right.

I didn't manage to figure that out, thanks.

  This means that I should move the i386bsd-nat.c change
to i386fbsd-nat.c source file.
  Would the part below be OK then?


Pierre Muller
Pascal language support maintainer for GDB



Index: gdb/i386fbsd-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/i386fbsd-nat.c,v
retrieving revision 1.16
diff -u -p -r1.16 i386fbsd-nat.c
--- gdb/i386fbsd-nat.c  3 Jan 2009 05:57:52 -0000       1.16
+++ gdb/i386fbsd-nat.c  9 Feb 2009 12:32:57 -0000
@@ -125,6 +125,7 @@ _initialize_i386fbsd_nat (void)

   /* Add some extra features to the common *BSD/i386 target.  */
   t = i386bsd_target ();
+  i386_use_watchpoints (t);
   t->to_resume = i386fbsd_resume;
   t->to_pid_to_exec_file = fbsd_pid_to_exec_file;
   t->to_find_memory_regions = fbsd_find_memory_regions;

Pierre@d620-muller ~/gdbcvs/src
$ cvs diff -up gdb/i386* gdb/config/i386/nm-fbsd.h
Index: gdb/i386fbsd-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/i386fbsd-nat.c,v
retrieving revision 1.16
diff -u -p -r1.16 i386fbsd-nat.c
--- gdb/i386fbsd-nat.c  3 Jan 2009 05:57:52 -0000       1.16
+++ gdb/i386fbsd-nat.c  9 Feb 2009 12:33:18 -0000
@@ -125,6 +125,7 @@ _initialize_i386fbsd_nat (void)

   /* Add some extra features to the common *BSD/i386 target.  */
   t = i386bsd_target ();
+  i386_use_watchpoints (t);
   t->to_resume = i386fbsd_resume;
   t->to_pid_to_exec_file = fbsd_pid_to_exec_file;
   t->to_find_memory_regions = fbsd_find_memory_regions;
Index: gdb/config/i386/nm-fbsd.h
===================================================================
RCS file: /cvs/src/src/gdb/config/i386/nm-fbsd.h,v
retrieving revision 1.18
diff -u -p -r1.18 nm-fbsd.h
--- gdb/config/i386/nm-fbsd.h   3 Jan 2009 05:57:54 -0000       1.18
+++ gdb/config/i386/nm-fbsd.h   9 Feb 2009 12:33:18 -0000
@@ -23,6 +23,7 @@

 #ifdef HAVE_PT_GETDBREGS
 #define I386_USE_GENERIC_WATCHPOINTS
+#define I386_WATCHPOINTS_IN_TARGET_VECTOR
 #endif

 #include "i386/nm-i386.h"


      reply	other threads:[~2009-02-09 12:34 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-08 23:22 Pierre Muller
2009-02-09  4:10 ` Eli Zaretskii
2009-02-09  7:33   ` Pierre Muller
2009-02-09 20:38     ` Eli Zaretskii
2009-02-13 11:06       ` [RFA-v2] " Pierre Muller
2009-02-14 19:22         ` Christopher Faylor
2009-02-20 10:56         ` [PING][RFA-v2] " Pierre Muller
2009-02-21  0:04           ` Mark Kettenis
2009-02-21 10:55             ` Pierre Muller
2009-02-09 11:07 ` [RFA] " Mark Kettenis
2009-02-09 12:34   ` Pierre Muller [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='000001c98ab2$bcf2f2a0$36d8d7e0$@u-strasbg.fr' \
    --to=muller@ics.u-strasbg.fr \
    --cc=gdb-patches@sourceware.org \
    --cc=mark.kettenis@xs4all.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox