From f532641db76c471c9e61a8847a820066177ec818 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 17 Apr 2004 23:14:52 +0000 Subject: Update. 2004-03-26 H.J. Lu * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c (__fxstat): Don't use "struct kernel_stat". 2004-04-02 H.J. Lu * sysdeps/ia64/memcmp.S: Fix symbol. --- ChangeLog | 9 +++++++++ linuxthreads/ChangeLog | 4 ++++ linuxthreads/semaphore.h | 2 +- localedata/ChangeLog | 11 +++++++++-- nptl/ChangeLog | 12 ++++++++++++ nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h | 2 +- sysdeps/ia64/memcmp.S | 2 +- sysdeps/unix/sysv/linux/wordsize-64/fxstat.c | 2 +- 15 files changed, 45 insertions(+), 13 deletions(-) diff --git a/ChangeLog b/ChangeLog index f20ed56..8d4fd0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-03-26 H.J. Lu + + * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c (__fxstat): Don't + use "struct kernel_stat". + +2004-04-02 H.J. Lu + + * sysdeps/ia64/memcmp.S: Fix symbol. + 2004-04-04 Carlos O'Donell * sysdeps/hppa/Dist: Add bits/link.h elf/entry.h. diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index e0ab2c2..48a873c 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2004-04-17 Ulrich Drepper + + * semaphore.h (SEM_VALUE_MAX): Just use a plain number. + 2004-04-16 Ulrich Drepper * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Fix last patch. diff --git a/linuxthreads/semaphore.h b/linuxthreads/semaphore.h index 7b09ea9..8407007 100644 --- a/linuxthreads/semaphore.h +++ b/linuxthreads/semaphore.h @@ -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 diff --git a/localedata/ChangeLog b/localedata/ChangeLog index ec63b75..af25a9b 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,11 @@ +2004-04-17 Petter Reinholdtsen + + * locales/et_EE: Change default charset for et_EE locale from + ISO-8859-1 to ISO-8859-15, to reflect the content of + . Based on input + from Indrek Hein and Meelis Roos. + * SUPPORTED: Add et_EE.ISO-8859-15. [BZ #118] + 2004-04-17 Ulrich Drepper * SUPPORTED (SUPPORTED-LOCALES): Add kk_KZ/PT154. @@ -7,8 +15,7 @@ 2004-03-19 Petter Reinholdtsen - * 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. diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 7225ad5..f0b074d 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,15 @@ +2004-04-17 Ulrich Drepper + + * 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 * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Remove unneeded diff --git a/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h index 65298fa..6dadfda 100644 --- a/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h index ab46ac0..e6c5d84 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h index cfb9c31..2329e98 100644 --- a/nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/ia64/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h index 02100d1..8123b41 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h index b30dbe5..ead2663 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h index ab46ac0..58087b2 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h index 81cfd00..c774aec 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h @@ -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 diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h index 3048ac0..28a40b7 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h @@ -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 diff --git a/sysdeps/ia64/memcmp.S b/sysdeps/ia64/memcmp.S index c3f21b9..2eed49a 100644 --- a/sysdeps/ia64/memcmp.S +++ b/sysdeps/ia64/memcmp.S @@ -162,4 +162,4 @@ ENTRY(memcmp) END(memcmp) weak_alias (memcmp, bcmp) -libc_hidden_builtin_def (BP_SYM (memcmp)) +libc_hidden_builtin_def (memcmp) diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c b/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c index dd47dbb..5d69eb8 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c @@ -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; -- cgit v1.1