Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 17 Apr 2004 23:14:52 +0000 (23:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 17 Apr 2004 23:14:52 +0000 (23:14 +0000)
2004-03-26  H.J. Lu  <hongjiu.lu@intel.com>

* sysdeps/unix/sysv/linux/wordsize-64/fxstat.c (__fxstat): Don't
use "struct kernel_stat".

2004-04-02  H.J. Lu  <hongjiu.lu@intel.com>

* sysdeps/ia64/memcmp.S: Fix symbol.

15 files changed:
ChangeLog
linuxthreads/ChangeLog
linuxthreads/semaphore.h
localedata/ChangeLog
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h
nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h
sysdeps/ia64/memcmp.S
sysdeps/unix/sysv/linux/wordsize-64/fxstat.c

index f20ed56..8d4fd0a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2004-03-26  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c (__fxstat): Don't
+       use "struct kernel_stat".
+
+2004-04-02  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/ia64/memcmp.S: Fix symbol.
+
 2004-04-04  Carlos O'Donell  <carlos@baldric.uwo.ca>
 
        * sysdeps/hppa/Dist: Add bits/link.h elf/entry.h.
index e0ab2c2..48a873c 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-17  Ulrich Drepper  <drepper@redhat.com>
+
+       * semaphore.h (SEM_VALUE_MAX): Just use a plain number.
+
 2004-04-16  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Fix last patch.
index 7b09ea9..8407007 100644 (file)
@@ -42,7 +42,7 @@ typedef struct
 #define SEM_FAILED     ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX  ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX  (2147483647)
 
 
 __BEGIN_DECLS
index ec63b75..af25a9b 100644 (file)
@@ -1,3 +1,11 @@
+2004-04-17  Petter Reinholdtsen  <pere@hungry.com>
+
+       * locales/et_EE: Change default charset for et_EE locale from
+       ISO-8859-1 to ISO-8859-15, to reflect the content of
+       <URL:http://www.eki.ee/itstandard/contents.html>.  Based on input
+       from Indrek Hein and Meelis Roos.
+       * SUPPORTED: Add et_EE.ISO-8859-15. [BZ #118]
+
 2004-04-17  Ulrich Drepper  <drepper@redhat.com>
 
        * SUPPORTED (SUPPORTED-LOCALES): Add kk_KZ/PT154.
@@ -7,8 +15,7 @@
 
 2004-03-19  Petter Reinholdtsen  <pere@hungry.com>
 
-       * locales/af_ZA: Make sure yesexpr and noexpr regex
-       start with '^'.
+       * locales/af_ZA: Make sure yesexpr and noexpr regex start with '^'.
        * locales/ar_TN: Likewise.
        * locales/ar_YE: Likewise.
        * locales/bn_BD: Likewise.
index 7225ad5..f0b074d 100644 (file)
@@ -1,3 +1,15 @@
+2004-04-17  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h (SEM_VALUE_MAX):
+       Just use a plain number.
+       * sysdeps/unix/sysv/linux/i386/bits/semaphore.h: Likewise.
+       * sysdeps/unix/sysv/linux/ia64/bits/semaphore.h: Likewise.
+       * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Likewise.
+       * sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Likewise.
+       * sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Likewise.
+       * sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Likewise.
+       * sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h: Likewise.
+
 2004-04-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
 
        * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Remove unneeded
index 65298fa..6dadfda 100644 (file)
@@ -27,7 +27,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   (2147483647)
 
 
 typedef union
index ab46ac0..e6c5d84 100644 (file)
@@ -29,7 +29,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   (2147483647)
 
 
 typedef union
index cfb9c31..2329e98 100644 (file)
@@ -29,7 +29,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   (2147483647)
 
 
 typedef union
index 02100d1..8123b41 100644 (file)
@@ -34,7 +34,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   (2147483647)
 
 
 typedef union
index b30dbe5..ead2663 100644 (file)
@@ -33,7 +33,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   (2147483647)
 
 
 typedef union
index ab46ac0..58087b2 100644 (file)
@@ -29,7 +29,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   ((int) (2147483647)
 
 
 typedef union
index 81cfd00..c774aec 100644 (file)
@@ -34,7 +34,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   ((int) (2147483647)
 
 
 typedef union
index 3048ac0..28a40b7 100644 (file)
@@ -29,7 +29,7 @@
 #define SEM_FAILED      ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
-#define SEM_VALUE_MAX   ((int) ((~0u) >> 1))
+#define SEM_VALUE_MAX   ((int) (2147483647)
 
 
 typedef union
index c3f21b9..2eed49a 100644 (file)
@@ -162,4 +162,4 @@ ENTRY(memcmp)
 END(memcmp)
 
 weak_alias (memcmp, bcmp)
-libc_hidden_builtin_def (BP_SYM (memcmp))
+libc_hidden_builtin_def (memcmp)
index dd47dbb..5d69eb8 100644 (file)
@@ -35,7 +35,7 @@ int
 __fxstat (int vers, int fd, struct stat *buf)
 {
   if (vers == _STAT_VER_KERNEL || vers == _STAT_VER_LINUX)
-    return INLINE_SYSCALL (fstat, 2, fd, CHECK_1 ((struct kernel_stat *) buf));
+    return INLINE_SYSCALL (fstat, 2, fd, CHECK_1 (buf));
 
   __set_errno (EINVAL);
   return -1;