mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* sysdeps/unix/sysv/linux/sparc/bits/errno.h: Define EOWNERDEAD
and ENOTRECOVERABLE if not already defined. * sysdeps/unix/sysv/linux/alpha/bits/errno.h: Likewise. 2005-12-27 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/alpha/Versions: Add new errlist-compat entry for up to 138 errnos.
This commit is contained in:
parent
1911b455dc
commit
bfffffaee3
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2005-12-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/bits/errno.h: Define EOWNERDEAD
|
||||||
|
and ENOTRECOVERABLE if not already defined.
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/bits/errno.h: Likewise.
|
||||||
|
|
||||||
|
2005-12-27 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/Versions: Add new errlist-compat
|
||||||
|
entry for up to 138 errnos.
|
||||||
|
|
||||||
2005-12-27 Jakub Jelinek <jakub@redhat.com>
|
2005-12-27 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* iconv/gconv_trans.c (__gconv_transliterate): Demangle step __fct
|
* iconv/gconv_trans.c (__gconv_transliterate): Demangle step __fct
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
2005-12-27 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: Add __next
|
||||||
|
and __prev field to pthread_mutex_t.
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Add __next field
|
||||||
|
to pthread_mutex_t.
|
||||||
|
|
||||||
2005-12-26 Ulrich Drepper <drepper@redhat.com>
|
2005-12-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* pthreadP.h: Define PTHREAD_MUTEX_ROBUST_PRIVATE_NP,
|
* pthreadP.h: Define PTHREAD_MUTEX_ROBUST_PRIVATE_NP,
|
||||||
@ -56,7 +67,7 @@
|
|||||||
* pthread_mutex_trylock.c (__pthread_mutex_trylock): Add break
|
* pthread_mutex_trylock.c (__pthread_mutex_trylock): Add break
|
||||||
missing after last change.
|
missing after last change.
|
||||||
|
|
||||||
* version.c: Update cpoyright year.
|
* version.c: Update copyright year.
|
||||||
|
|
||||||
2005-12-23 Ulrich Drepper <drepper@redhat.com>
|
2005-12-23 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ typedef union
|
|||||||
|
|
||||||
/* Data structures for mutex handling. The structure of the attribute
|
/* Data structures for mutex handling. The structure of the attribute
|
||||||
type is deliberately not exposed. */
|
type is deliberately not exposed. */
|
||||||
typedef union
|
typedef union __pthread_mutex_u
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -57,6 +57,9 @@ typedef union
|
|||||||
binary compatibility. */
|
binary compatibility. */
|
||||||
int __kind;
|
int __kind;
|
||||||
int __spins;
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
union __pthread_mutex_u *__prev;
|
||||||
|
#define __PTHREAD_MUTEX_HAVE_PREV 1
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
|
Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ typedef union
|
|||||||
|
|
||||||
/* Data structures for mutex handling. The structure of the attribute
|
/* Data structures for mutex handling. The structure of the attribute
|
||||||
type is not exposed on purpose. */
|
type is not exposed on purpose. */
|
||||||
typedef union
|
typedef union __pthread_mutex_u
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -57,6 +57,9 @@ typedef union
|
|||||||
binary compatibility. */
|
binary compatibility. */
|
||||||
int __kind;
|
int __kind;
|
||||||
int __spins;
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
union __pthread_mutex_u *__prev;
|
||||||
|
#define __PTHREAD_MUTEX_HAVE_PREV 1
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Machine-specific pthread type layouts. PowerPC version.
|
/* Machine-specific pthread type layouts. PowerPC version.
|
||||||
Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
|
Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ typedef union
|
|||||||
|
|
||||||
/* Data structures for mutex handling. The structure of the attribute
|
/* Data structures for mutex handling. The structure of the attribute
|
||||||
type is deliberately not exposed. */
|
type is deliberately not exposed. */
|
||||||
typedef union
|
typedef union __pthread_mutex_u
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -73,10 +73,19 @@ typedef union
|
|||||||
/* KIND must stay at this position in the structure to maintain
|
/* KIND must stay at this position in the structure to maintain
|
||||||
binary compatibility. */
|
binary compatibility. */
|
||||||
int __kind;
|
int __kind;
|
||||||
#if __WORDSIZE != 64
|
#if __WORDSIZE == 64
|
||||||
unsigned int __nusers;
|
|
||||||
#endif
|
|
||||||
int __spins;
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
union __pthread_mutex_u *__prev;
|
||||||
|
# define __PTHREAD_MUTEX_HAVE_PREV 1
|
||||||
|
#else
|
||||||
|
unsigned int __nusers;
|
||||||
|
union
|
||||||
|
{
|
||||||
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
};
|
||||||
|
#endif
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ typedef union
|
|||||||
|
|
||||||
/* Data structures for mutex handling. The structure of the attribute
|
/* Data structures for mutex handling. The structure of the attribute
|
||||||
type is not exposed on purpose. */
|
type is not exposed on purpose. */
|
||||||
typedef union
|
typedef union __pthread_mutex_u
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -72,10 +72,19 @@ typedef union
|
|||||||
/* KIND must stay at this position in the structure to maintain
|
/* KIND must stay at this position in the structure to maintain
|
||||||
binary compatibility. */
|
binary compatibility. */
|
||||||
int __kind;
|
int __kind;
|
||||||
#if __WORDSIZE != 64
|
#if __WORDSIZE == 64
|
||||||
unsigned int __nusers;
|
|
||||||
#endif
|
|
||||||
int __spins;
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
union __pthread_mutex_u *__prev;
|
||||||
|
# define __PTHREAD_MUTEX_HAVE_PREV 1
|
||||||
|
#else
|
||||||
|
unsigned int __nusers;
|
||||||
|
union
|
||||||
|
{
|
||||||
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
};
|
||||||
|
#endif
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ typedef union
|
|||||||
|
|
||||||
/* Data structures for mutex handling. The structure of the attribute
|
/* Data structures for mutex handling. The structure of the attribute
|
||||||
type is not exposed on purpose. */
|
type is not exposed on purpose. */
|
||||||
typedef union
|
typedef union __pthread_mutex_u
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -57,7 +57,11 @@ typedef union
|
|||||||
binary compatibility. */
|
binary compatibility. */
|
||||||
int __kind;
|
int __kind;
|
||||||
unsigned int __nusers;
|
unsigned int __nusers;
|
||||||
int __spins;
|
union
|
||||||
|
{
|
||||||
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
};
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Machine-specific pthread type layouts. SPARC version.
|
/* Machine-specific pthread type layouts. SPARC version.
|
||||||
Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
|
Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ typedef union
|
|||||||
|
|
||||||
/* Data structures for mutex handling. The structure of the attribute
|
/* Data structures for mutex handling. The structure of the attribute
|
||||||
type is deliberately not exposed. */
|
type is deliberately not exposed. */
|
||||||
typedef union
|
typedef union __pthread_mutex_u
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -73,10 +73,19 @@ typedef union
|
|||||||
/* KIND must stay at this position in the structure to maintain
|
/* KIND must stay at this position in the structure to maintain
|
||||||
binary compatibility. */
|
binary compatibility. */
|
||||||
int __kind;
|
int __kind;
|
||||||
#if __WORDSIZE != 64
|
#if __WORDSIZE == 64
|
||||||
unsigned int __nusers;
|
|
||||||
#endif
|
|
||||||
int __spins;
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
union __pthread_mutex_u *__prev;
|
||||||
|
# define __PTHREAD_MUTEX_HAVE_PREV 1
|
||||||
|
#else
|
||||||
|
unsigned int __nusers;
|
||||||
|
union
|
||||||
|
{
|
||||||
|
int __spins;
|
||||||
|
union __pthread_mutex_u *__next;
|
||||||
|
};
|
||||||
|
#endif
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
char __size[__SIZEOF_PTHREAD_MUTEX_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
@ -73,6 +73,10 @@ libc {
|
|||||||
#errlist-compat 132
|
#errlist-compat 132
|
||||||
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
||||||
}
|
}
|
||||||
|
GLIBC_2.4 {
|
||||||
|
#errlist-compat 138
|
||||||
|
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
||||||
|
}
|
||||||
GLIBC_PRIVATE {
|
GLIBC_PRIVATE {
|
||||||
__libc_alpha_cache_shape;
|
__libc_alpha_cache_shape;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Error constants. Linux/Alpha specific version.
|
/* Error constants. Linux/Alpha specific version.
|
||||||
Copyright (C) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1996,1997,1998,1999,2002,2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -31,6 +31,12 @@
|
|||||||
# define ECANCELED 131
|
# define ECANCELED 131
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
/* Support for error codes to support robust mutexes was added later, too. */
|
||||||
|
# ifndef EOWNERDEAD
|
||||||
|
# define EOWNERDEAD 136
|
||||||
|
# define ENOTRECOVERABLE 137
|
||||||
|
# endif
|
||||||
|
|
||||||
# ifndef __ASSEMBLER__
|
# ifndef __ASSEMBLER__
|
||||||
/* Function to get address of global `errno' variable. */
|
/* Function to get address of global `errno' variable. */
|
||||||
extern int *__errno_location (void) __THROW __attribute__ ((__const__));
|
extern int *__errno_location (void) __THROW __attribute__ ((__const__));
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Error constants. Linux/Sparc specific version.
|
/* Error constants. Linux/Sparc specific version.
|
||||||
Copyright (C) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1996,1997,1998,1999,2002,2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -31,6 +31,12 @@
|
|||||||
# define ECANCELED 127
|
# define ECANCELED 127
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
/* Support for error codes to support robust mutexes was added later, too. */
|
||||||
|
# ifndef EOWNERDEAD
|
||||||
|
# define EOWNERDEAD 132
|
||||||
|
# define ENOTRECOVERABLE 133
|
||||||
|
# endif
|
||||||
|
|
||||||
# ifndef __ASSEMBLER__
|
# ifndef __ASSEMBLER__
|
||||||
/* Function to get address of global `errno' variable. */
|
/* Function to get address of global `errno' variable. */
|
||||||
extern int *__errno_location (void) __THROW __attribute__ ((__const__));
|
extern int *__errno_location (void) __THROW __attribute__ ((__const__));
|
||||||
|
Loading…
Reference in New Issue
Block a user