svn commit: r203271 - projects/ppc64/sys/powerpc/include

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Jan 31 03:06:13 UTC 2010


Author: nwhitehorn
Date: Sun Jan 31 03:06:12 2010
New Revision: 203271
URL: http://svn.freebsd.org/changeset/base/203271

Log:
  Fix the Elf64_Auxinfo for PowerPC. This gets RTLD a little farther.

Modified:
  projects/ppc64/sys/powerpc/include/elf.h

Modified: projects/ppc64/sys/powerpc/include/elf.h
==============================================================================
--- projects/ppc64/sys/powerpc/include/elf.h	Sun Jan 31 02:25:15 2010	(r203270)
+++ projects/ppc64/sys/powerpc/include/elf.h	Sun Jan 31 03:06:12 2010	(r203271)
@@ -72,9 +72,8 @@ typedef struct {	/* Auxiliary vector ent
 	} a_un;
 } Elf32_Auxinfo;
 
-/* XXX: check ABI */
 typedef struct {	/* Auxiliary vector entry on initial stack */
-	int	a_type;			/* Entry type. */
+	long	a_type;			/* Entry type. */
 	union {
 		long	a_val;		/* Integer value. */
 		void	*a_ptr;		/* Address. */


More information about the svn-src-projects mailing list