]> git.pld-linux.org Git - packages/glibc.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Mon, 17 Nov 2008 21:40:10 +0000 (21:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    glibc-osinfo.patch -> 1.2
    glibc-powerpc-abi_fix.patch -> 1.2
    glibc-sparc-lowlevellock.patch -> 1.3

glibc-osinfo.patch [deleted file]
glibc-powerpc-abi_fix.patch [deleted file]
glibc-sparc-lowlevellock.patch [deleted file]

diff --git a/glibc-osinfo.patch b/glibc-osinfo.patch
deleted file mode 100644 (file)
index 62e368f..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-Index: sysdeps/unix/sysv/linux/dl-osinfo.h
-===================================================================
-RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/dl-osinfo.h,v
-retrieving revision 1.27
-retrieving revision 1.28
-diff -u -u -r1.27 -r1.28
---- sysdeps/unix/sysv/linux/dl-osinfo.h        8 Mar 2008 07:33:46 -0000       1.27
-+++ sysdeps/unix/sysv/linux/dl-osinfo.h        17 Apr 2008 08:32:24 -0000      1.28
-@@ -19,6 +19,7 @@
- #include <kernel-features.h>
- #include <dl-sysdep.h>
-+#include <fcntl.h>
- #include <stdint.h>
- #ifndef MIN
diff --git a/glibc-powerpc-abi_fix.patch b/glibc-powerpc-abi_fix.patch
deleted file mode 100644 (file)
index 359c2a7..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
---- libc/sysdeps/powerpc/powerpc64/fpu/s_llround.S.jj  2008-04-17 10:32:49.000000000 +0200
-+++ libc/sysdeps/powerpc/powerpc64/fpu/s_llround.S     2008-06-12 20:53:40.000000000 +0200
-@@ -1,5 +1,5 @@
- /* llround function.  PowerPC64 version.
--   Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
-+   Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-    This file is part of the GNU C Library.
-    The GNU C Library is free software; you can redistribute it and/or
-@@ -52,12 +52,12 @@ ENTRY (__llround)
-       fabs    fp2,fp1         /* Get the absolute value of x.  */
-       fsub    fp12,fp10,fp10  /* Compute 0.0 into fp12.  */
-       fcmpu   cr6,fp2,fp10    /* if |x| < 0.5  */
--      fcmpu   cr4,fp2,fp9     /* if |x| >= 2^52  */
--      fcmpu   cr3,fp1,fp12    /* x is negative? x < 0.0  */
-+      fcmpu   cr7,fp2,fp9     /* if |x| >= 2^52  */
-+      fcmpu   cr1,fp1,fp12    /* x is negative? x < 0.0  */
-       blt-    cr6,.Lretzero   /* 0.5 > x < -0.5 so just return 0.  */
--      bge-    cr4,.Lnobias    /* 2^52 > x < -2^52 just convert with no bias.  */
-+      bge-    cr7,.Lnobias    /* 2^52 > x < -2^52 just convert with no bias.  */
-       fadd    fp3,fp2,fp10    /* |x|+=0.5 bias to prepare to round.  */
--      bge     cr3,.Lconvert   /* x is positive so don't negate x.  */
-+      bge     cr1,.Lconvert   /* x is positive so don't negate x.  */
-       fnabs   fp3,fp3         /* -(|x|+=0.5)  */
- .Lconvert:
-       fctidz  fp4,fp3         /* Convert to Integer double word round toward 0.  */
---- libc/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S.jj 2008-04-17 10:32:49.000000000 +0200
-+++ libc/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S    2008-06-12 20:54:17.000000000 +0200
-@@ -1,5 +1,5 @@
- /* llroundf function.  PowerPC64 version.
--   Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
-+   Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-    This file is part of the GNU C Library.
-    The GNU C Library is free software; you can redistribute it and/or
-@@ -51,12 +51,12 @@ ENTRY (__llroundf)
-       fabs    fp2,fp1         /* Get the absolute value of x.  */
-       fsub    fp12,fp10,fp10  /* Compute 0.0 into fp12.  */
-       fcmpu   cr6,fp2,fp10    /* if |x| < 0.5  */
--      fcmpu   cr4,fp2,fp9     /* if |x| >= 2^23  */
--      fcmpu   cr3,fp1,fp12    /* x is negative? x < 0.0  */
-+      fcmpu   cr7,fp2,fp9     /* if |x| >= 2^23  */
-+      fcmpu   cr1,fp1,fp12    /* x is negative? x < 0.0  */
-       blt-    cr6,.Lretzero   /* 0.5 > x < -0.5 so just return 0.  */
--      bge-    cr4,.Lnobias    /* 2^23 > x < -2^23 just convert with no bias.  */
-+      bge-    cr7,.Lnobias    /* 2^23 > x < -2^23 just convert with no bias.  */
-       fadd    fp3,fp2,fp10    /* |x|+=0.5 bias to prepare to round.  */
--      bge     cr3,.Lconvert   /* x is positive so don't negate x.  */
-+      bge     cr1,.Lconvert   /* x is positive so don't negate x.  */
-       fnabs   fp3,fp3         /* -(|x|+=0.5)  */
- .Lconvert:
-       fctidz  fp4,fp3         /* Convert to Integer double word round toward 0.  */
---- libc/sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S.jj   2008-04-17 10:32:49.000000000 +0200
-+++ libc/sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S      2008-06-12 20:54:50.000000000 +0200
-@@ -1,5 +1,5 @@
- /* llround function.  PowerPC32 on PowerPC64 version.
--   Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
-+   Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-    This file is part of the GNU C Library.
-    The GNU C Library is free software; you can redistribute it and/or
-@@ -75,12 +75,12 @@ ENTRY (__llround)
-       fabs    fp2,fp1         /* Get the absolute value of x.  */
-       fsub    fp12,fp10,fp10  /* Compute 0.0 into fpr12.  */
-       fcmpu   cr6,fp2,fp10    /* if |x| < 0.5  */
--      fcmpu   cr4,fp2,fp9     /* if |x| >= 2^52  */
--      fcmpu   cr3,fp1,fp12    /* x is negative? x < 0.0  */
-+      fcmpu   cr7,fp2,fp9     /* if |x| >= 2^52  */
-+      fcmpu   cr1,fp1,fp12    /* x is negative? x < 0.0  */
-       blt-    cr6,.Lretzero   /* 0.5 > x < -0.5 so just return 0.  */
--      bge-    cr4,.Lnobias    /* 2^52 > x < -2^52 just convert with no bias.  */
-+      bge-    cr7,.Lnobias    /* 2^52 > x < -2^52 just convert with no bias.  */
-       fadd    fp3,fp2,fp10    /* |x|+=0.5 bias to prepare to round.  */
--      bge     cr3,.Lconvert   /* x is positive so don't negate x.  */
-+      bge     cr1,.Lconvert   /* x is positive so don't negate x.  */
-       fnabs   fp3,fp3         /* -(|x|+=0.5)  */
- .Lconvert:
-       fctidz  fp4,fp3         /* Convert to Integer double word round toward 0.  */
---- libc/sysdeps/powerpc/powerpc32/fpu/s_lround.S.jj   2008-04-17 10:32:49.000000000 +0200
-+++ libc/sysdeps/powerpc/powerpc32/fpu/s_lround.S      2008-06-12 20:55:16.000000000 +0200
-@@ -1,5 +1,5 @@
- /* lround function.  PowerPC32 version.
--   Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
-+   Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-    This file is part of the GNU C Library.
-    The GNU C Library is free software; you can redistribute it and/or
-@@ -65,10 +65,10 @@ ENTRY (__lround)
-       fabs    fp2, fp1        /* Get the absolute value of x.  */
-       fsub    fp12,fp10,fp10  /* Compute 0.0.  */
-       fcmpu   cr6, fp2, fp10  /* if |x| < 0.5  */
--      fcmpu   cr3, fp1, fp12  /* x is negative? x < 0.0  */
-+      fcmpu   cr7, fp1, fp12  /* x is negative? x < 0.0  */
-       blt-    cr6,.Lretzero
-       fadd    fp3,fp2,fp10    /* |x|+=0.5 bias to prepare to round.  */
--      bge     cr3,.Lconvert   /* x is positive so don't negate x.  */
-+      bge     cr7,.Lconvert   /* x is positive so don't negate x.  */
-       fnabs   fp3,fp3         /* -(|x|+=0.5)  */ 
- .Lconvert:
-       fctiwz  fp4,fp3         /* Convert to Integer word lround toward 0.  */
diff --git a/glibc-sparc-lowlevellock.patch b/glibc-sparc-lowlevellock.patch
deleted file mode 100644 (file)
index aa41068..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-2008-04-14  David S. Miller  <davem@davemloft.net>
-
- * sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c
- (__old_sem_wait): Fix argument to lll_futex_wait().
-
-===================================================================
-RCS file: /cvs/glibc/libc/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c,v
-retrieving revision 1.2
-retrieving revision 1.3
-diff -u -r1.2 -r1.3
---- libc/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c 2007/08/15 20:47:42     1.2
-+++ libc/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c 2008/04/15 15:00:30     1.3
-@@ -155,7 +155,7 @@
-       /* Enable asynchronous cancellation.  Required by the standard.  */
-       int oldtype = __pthread_enable_asynccancel ();
--      err = lll_futex_wait (futex, 0,
-+      err = lll_futex_wait (&isem->value, 0,
-                           isem->private ^ FUTEX_PRIVATE_FLAG);
-       /* Disable asynchronous cancellation.  */
This page took 0.242513 seconds and 4 git commands to generate.