svn commit: r237389 - stable/8/sys/sys

Marius Strobl marius at FreeBSD.org
Thu Jun 21 12:10:10 UTC 2012


Author: marius
Date: Thu Jun 21 12:10:09 2012
New Revision: 237389
URL: http://svn.freebsd.org/changeset/base/237389

Log:
  MFC: r231617
  
  Add ARM relocations types used for thread-local storage
  
  Reviewed by:	cognet

Modified:
  stable/8/sys/sys/elf_common.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/boot/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/e1000/   (props changed)

Modified: stable/8/sys/sys/elf_common.h
==============================================================================
--- stable/8/sys/sys/elf_common.h	Thu Jun 21 12:10:08 2012	(r237388)
+++ stable/8/sys/sys/elf_common.h	Thu Jun 21 12:10:09 2012	(r237389)
@@ -630,6 +630,10 @@ typedef struct {
 #define	R_ARM_THM_SWI8		14
 #define	R_ARM_XPC25		15
 #define	R_ARM_THM_XPC22		16
+/* TLS relocations */
+#define	R_ARM_TLS_DTPMOD32	17	/* ID of module containing symbol */
+#define	R_ARM_TLS_DTPOFF32	18	/* Offset in TLS block */
+#define	R_ARM_TLS_TPOFF32	19	/* Offset in static TLS block */
 #define	R_ARM_COPY		20	/* Copy data from shared object. */
 #define	R_ARM_GLOB_DAT		21	/* Set GOT entry to data address. */
 #define	R_ARM_JUMP_SLOT		22	/* Set GOT entry to code address. */


More information about the svn-src-all mailing list