[Glibc-bsd-commits] r5817 - in trunk/glibc-ports/kfreebsd: . bits

aurel32 at alioth.debian.org aurel32 at alioth.debian.org
Wed Oct 21 20:11:06 UTC 2015


Author: aurel32
Date: 2015-10-21 20:11:05 +0000 (Wed, 21 Oct 2015)
New Revision: 5817

Modified:
   trunk/glibc-ports/kfreebsd/bits/auxv.h
   trunk/glibc-ports/kfreebsd/dl-sysdep.c
Log:
Add AT_TIMEKEEP auxv entry


Modified: trunk/glibc-ports/kfreebsd/bits/auxv.h
===================================================================
--- trunk/glibc-ports/kfreebsd/bits/auxv.h	2015-10-21 19:33:37 UTC (rev 5816)
+++ trunk/glibc-ports/kfreebsd/bits/auxv.h	2015-10-21 20:11:05 UTC (rev 5817)
@@ -40,5 +40,6 @@
 #define	AT_NCPUS	19	/* Number of CPUs. */
 #define	AT_PAGESIZES	20	/* Pagesizes. */
 #define	AT_PAGESIZESLEN	21	/* Number of pagesizes. */
+#define	AT_TIMEKEEP	22	/* Pointer to timehands. */
 #define	AT_STACKPROT	23	/* Initial stack protection. */
 

Modified: trunk/glibc-ports/kfreebsd/dl-sysdep.c
===================================================================
--- trunk/glibc-ports/kfreebsd/dl-sysdep.c	2015-10-21 19:33:37 UTC (rev 5816)
+++ trunk/glibc-ports/kfreebsd/dl-sysdep.c	2015-10-21 20:11:05 UTC (rev 5817)
@@ -235,6 +235,7 @@
 	  [AT_NCPUS - 2] =		{ "NCPUS:        ", dec },
 	  [AT_PAGESIZES - 2] =		{ "PAGESIZES:    0x", hex },
 	  [AT_PAGESIZESLEN - 2] =	{ "PAGESIZESLEN: ", dec },
+	  [AT_TIMEKEEP - 2] =		{ "TIMEKEEP:     0x", hex },
 	  [AT_STACKPROT - 2] =		{ "STACKPROT:    0x", hex },
 	};
       unsigned int idx = (unsigned int) (av->a_type - 2);




More information about the Glibc-bsd-commits mailing list