PERFORCE change 184911 for review

Oleksandr Tymoshenko gonzo at FreeBSD.org
Tue Oct 19 23:13:10 UTC 2010


http://p4web.freebsd.org/@@184911?ac=10

Change 184911 by gonzo at gonzo_figaro on 2010/10/19 23:13:08

	Merge kib's patch:
	    Supply some useful information to the started image using ELF aux
	    vectors.  In particular, provide pagesize and pagesizes array, the
	    canary value for SSP use, number of host CPUs and osreldate.

Affected files ...

.. //depot/projects/avr32/src/sys/avr32/include/elf.h#4 edit

Differences ...

==== //depot/projects/avr32/src/sys/avr32/include/elf.h#4 (text+ko) ====

@@ -78,7 +78,14 @@
 #define AT_EGID         14      /* Effective gid. */
 #define	AT_EXECPATH	15	/* Path to the executable. */
 
-#define AT_COUNT        16      /* Count of defined aux entry types. */
+#define	AT_CANARY	16	/* Canary for SSP */
+#define	AT_CANARYLEN	17	/* Length of the canary. */
+#define	AT_OSRELDATE	18	/* OSRELDATE. */
+#define	AT_NCPUS	19	/* Number of CPUs. */
+#define	AT_PAGESIZES	20	/* Pagesizes. */
+#define	AT_PAGESIZESLEN	21	/* Number of pagesizes. */
+
+#define AT_COUNT        22      /* Count of defined aux entry types. */
 
 
 /* Define "machine" characteristics */


More information about the p4-projects mailing list