bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnumach Linux source in CVS formatted as HTML


From: John Tobey
Subject: gnumach Linux source in CVS formatted as HTML
Date: Sun, 21 Oct 2001 10:46:38 -0400
User-agent: Mutt/1.2.5i

Hi,

Here's what I got building gnumach from CVS:

/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c: In function `__delay':
/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c:23: invalid punctuation 
`;' in constraint
/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c: In function 
`__const_udelay':
/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c:36: invalid punctuation 
`;' in constraint

Here is the fix:

Index: linux/src/arch/i386/lib/delay.c
===================================================================
RCS file: /cvsroot/hurd/gnumach/linux/src/arch/i386/lib/delay.c,v
retrieving revision 1.1
diff -u -r1.1 delay.c
--- linux/src/arch/i386/lib/delay.c     2000/07/27 16:48:04     1.1
+++ linux/src/arch/i386/lib/delay.c     2001/10/21 14:22:49
@@ -26,7 +26,7 @@
                "1:\tjmp 2f\n"
                ".align 16\n"
                "2:\tdecl %0\n\tjns 2b"
-               :"=&a" (d0)
+               :"=&a" (d0)
                :"0" (loops));
 }
 
@@ -34,7 +34,7 @@
 {
        int d0;
        __asm__("mull %0"
-               :"=d" (xloops), "=&a" (d0)
+               :"=d" (xloops), "=&a" (d0)
                :"1" (xloops),"0" (loops_per_sec));
         __delay(xloops);
 }

Regards,
-John

-- 
John Tobey <jtobey@john-edwin-tobey.org>
Take a minute for the defense of freedom:
http://www.indefenseoffreedom.org/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]