about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-01-12 01:35:51 +0000
committerUlrich Drepper <drepper@redhat.com>2002-01-12 01:35:51 +0000
commit6c69f24aa872c0b722f3f77e1e060cf6c8872b34 (patch)
tree543a38da17cb27059d98bf7642aa79a811cc4f83
parente57372d1e2b6fedc490e6670874077e9168c8807 (diff)
downloadglibc-6c69f24aa872c0b722f3f77e1e060cf6c8872b34.tar.gz
glibc-6c69f24aa872c0b722f3f77e1e060cf6c8872b34.tar.xz
glibc-6c69f24aa872c0b722f3f77e1e060cf6c8872b34.zip
Update.
2002-01-11  Ulrich Drepper  <drepper@redhat.com>

	* elf/elf.h: Update x86 relocations.
-rw-r--r--ChangeLog4
-rw-r--r--elf/elf.h37
-rw-r--r--linuxthreads/ChangeLog5
3 files changed, 30 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 35db6ba8c3..8aafc34166 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-11  Ulrich Drepper  <drepper@redhat.com>
+
+	* elf/elf.h: Update x86 relocations.
+
 2002-01-10  Ulrich Drepper  <drepper@redhat.com>
 
 	* locale/programs/charmap.c (new_width): Check whether byte
diff --git a/elf/elf.h b/elf/elf.h
index c14619f9de..d333b4e003 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -1,5 +1,5 @@
 /* This file defines standard ELF types, structures, and macros.
-   Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1995-1999, 2000, 2001, 2002 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
@@ -1071,28 +1071,33 @@ typedef struct
 #define R_386_RELATIVE	   8		/* Adjust by program base */
 #define R_386_GOTOFF	   9		/* 32 bit offset to GOT */
 #define R_386_GOTPC	   10		/* 32 bit PC relative offset to GOT */
-#define R_386_TLS_GD_32	   12		/* Direct 32 bit for general dynamic
+#define R_386_32PLT	   11
+#define R_386_16	   20
+#define R_386_PC16	   21
+#define R_386_8		   22
+#define R_386_PC8	   23
+#define R_386_TLS_GD_32	   24		/* Direct 32 bit for general dynamic
 					   thread local data */
-#define R_386_TLS_GD_PUSH  13		/* Tag for pushl in GD TLS code */
-#define R_386_TLS_GD_CALL  14		/* Relocation for call to
+#define R_386_TLS_GD_PUSH  25		/* Tag for pushl in GD TLS code */
+#define R_386_TLS_GD_CALL  26		/* Relocation for call to
 					   __tls_get_addr() */
-#define R_386_TLS_GD_POP   15		/* Tag for popl in GD TLS code */
-#define R_386_TLS_LDM_32   16		/* Direct 32 bit for local dynamic
+#define R_386_TLS_GD_POP   27		/* Tag for popl in GD TLS code */
+#define R_386_TLS_LDM_32   28		/* Direct 32 bit for local dynamic
 					   thread local data in GD code */
-#define R_386_TLS_LDM_PUSH 17		/* Tag for pushl in LDM TLS code */
-#define R_386_TLS_LDM_CALL 18		/* Relocation for call to
+#define R_386_TLS_LDM_PUSH 29		/* Tag for pushl in LDM TLS code */
+#define R_386_TLS_LDM_CALL 30		/* Relocation for call to
 					   __tls_get_addr() in LDM code */
-#define R_386_TLS_LDM_POP  19		/* Tag for popl in LDM TLS code */
-#define R_386_TLS_LDO_32   20		/* Offset relative to TLS block */
-#define R_386_TLS_IE_32	   21		/* GOT entry for static TLS block
+#define R_386_TLS_LDM_POP  31		/* Tag for popl in LDM TLS code */
+#define R_386_TLS_LDO_32   32		/* Offset relative to TLS block */
+#define R_386_TLS_IE_32	   33		/* GOT entry for static TLS block
 					   offset */
-#define R_386_TLS_LE_32	   22		/* Offset relative to static TLS
+#define R_386_TLS_LE_32	   34		/* Offset relative to static TLS
 					   block */
-#define R_386_TLS_DTPMOD32 23		/* ID of module containing symbol */
-#define R_386_TLS_DTPOFF32 24		/* Offset in TLS block */
-#define R_386_TLS_TPOFF32  25		/* Offset in static TLS block */
+#define R_386_TLS_DTPMOD32 35		/* ID of module containing symbol */
+#define R_386_TLS_DTPOFF32 36		/* Offset in TLS block */
+#define R_386_TLS_TPOFF32  37		/* Offset in static TLS block */
 /* Keep this the last entry.  */
-#define R_386_NUM	26
+#define R_386_NUM	   38
 
 /* SUN SPARC specific definitions.  */
 
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index 4edab3b453..655eacd0de 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,8 @@
+2002-01-11  Andreas Schwab  <schwab@suse.de>
+
+	* signals.c (sighandler): Initialize all elements to SIG_ERR.
+	(__sigaction): Don't use value from sighandler if it is SIG_ERR.
+
 2002-01-06  Richard Henderson  <rth@redhat.com>
 
 	* sysdeps/alpha/elf/pt-initfini.c: New file.