On Wed, Oct 30, 2002 at 05:29:39PM +0100, Dag-Erling Smorgrav wrote:
> That revision doesn't change the structure, just how it is defined, so
> binary compatibility is not an issue.  As for source compatibility,
> just use the DBREG_DRX macro, which exists in both -STABLE and
> -CURRENT (it was merged into -STABLE two years ago).
It's too bad source compatibility hasn't been preserved. This macro
is a real PITA to use with a static structure (see my Wine patch
below).

Argument d is not properly parenthesized, I'll commit the following
patch if nobody objects:

- #define DBREG_DRX(d,x) (d->dr[(x)]) /* reference dr0 - dr7 by
-                                          register number */
+ #define DBREG_DRX(d,x) ((d)->dr[(x)]) /* reference dr0 - dr7 by
+                                          register number */

Now for Gerald and Krzysztof, could you try the attached patch?
Works for me under current at least. I'll test it under stable then
I'll send it to Wine.
-- 
Pierre Beyssac              [EMAIL PROTECTED] [EMAIL PROTECTED]
    Free domains: http://www.eu.org/ or mail [EMAIL PROTECTED]
--- context_i386.c.orig Wed Aug 14 22:59:03 2002
+++ context_i386.c      Fri Nov  8 11:29:34 2002
@@ -373,6 +373,15 @@
        struct dbreg dbregs;
         if (ptrace( PTRACE_GETDBREGS, pid, (caddr_t) &dbregs, 0 ) == -1)
                goto error;
+#ifdef DBREG_DRX
+       /* needed for FreeBSD, the structure fields have changed under 5.x */
+       context->Dr0 = DBREG_DRX((&dbregs), 0);
+       context->Dr1 = DBREG_DRX((&dbregs), 1);
+       context->Dr2 = DBREG_DRX((&dbregs), 2);
+       context->Dr3 = DBREG_DRX((&dbregs), 3);
+       context->Dr6 = DBREG_DRX((&dbregs), 6);
+       context->Dr7 = DBREG_DRX((&dbregs), 7);
+#else
        context->Dr0 = dbregs.dr0;
        context->Dr1 = dbregs.dr1;
        context->Dr2 = dbregs.dr2;
@@ -380,6 +389,8 @@
        context->Dr6 = dbregs.dr6;
        context->Dr7 = dbregs.dr7;
 #endif
+
+#endif
     }
     if (flags & CONTEXT_FLOATING_POINT)
     {
@@ -437,6 +448,17 @@
     {
 #ifdef PTRACE_SETDBREGS
        struct dbreg dbregs;
+#ifdef DBREG_DRX
+       /* needed for FreeBSD, the structure fields have changed under 5.x */
+       DBREG_DRX((&dbregs), 0) = context->Dr0;
+       DBREG_DRX((&dbregs), 1) = context->Dr1;
+       DBREG_DRX((&dbregs), 2) = context->Dr2;
+       DBREG_DRX((&dbregs), 3) = context->Dr3;
+       DBREG_DRX((&dbregs), 4) = 0;
+       DBREG_DRX((&dbregs), 5) = 0;
+       DBREG_DRX((&dbregs), 6) = context->Dr6;
+       DBREG_DRX((&dbregs), 7) = context->Dr7;
+#else
        dbregs.dr0 = context->Dr0;
        dbregs.dr1 = context->Dr1;
        dbregs.dr2 = context->Dr2;
@@ -445,6 +467,7 @@
        dbregs.dr5 = 0;
        dbregs.dr6 = context->Dr6;
        dbregs.dr7 = context->Dr7;
+#endif
         if (ptrace( PTRACE_SETDBREGS, pid, (caddr_t) &dbregs, 0 ) == -1)
                goto error;
 #endif

Reply via email to