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.
This commit is contained in:
Ulrich Drepper 2004-04-17 23:14:52 +00:00
parent 69ac9d0793
commit f532641db7
15 changed files with 45 additions and 13 deletions

View File

@ -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.

View 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.

View 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

View 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.

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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)

View 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;