svn commit: r294844 - head/sys/sys

Ed Maste emaste at FreeBSD.org
Tue Jan 26 18:20:26 UTC 2016


Author: emaste
Date: Tue Jan 26 18:20:25 2016
New Revision: 294844
URL: https://svnweb.freebsd.org/changeset/base/294844

Log:
  Add STT_SPARC_REGISTER ELF definition
  
  MFC after:	1 week

Modified:
  head/sys/sys/elf_common.h

Modified: head/sys/sys/elf_common.h
==============================================================================
--- head/sys/sys/elf_common.h	Tue Jan 26 17:00:31 2016	(r294843)
+++ head/sys/sys/elf_common.h	Tue Jan 26 18:20:25 2016	(r294844)
@@ -771,8 +771,9 @@ typedef struct {
 #define	STT_LOOS	10	/* Reserved range for operating system */
 #define	STT_GNU_IFUNC	10
 #define	STT_HIOS	12	/*   specific semantics. */
-#define	STT_LOPROC	13	/* reserved range for processor */
-#define	STT_HIPROC	15	/*   specific semantics. */
+#define	STT_LOPROC	13	/* Start of processor reserved range. */
+#define	STT_SPARC_REGISTER 13	/* SPARC register information. */
+#define	STT_HIPROC	15	/* End of processor reserved range. */
 
 /* Symbol visibility - ELFNN_ST_VISIBILITY - st_other */
 #define	STV_DEFAULT	0x0	/* Default visibility (see binding). */


More information about the svn-src-all mailing list