svn commit: r358752 - stable/12/sys/sys

Ed Maste emaste at FreeBSD.org
Sun Mar 8 18:10:42 UTC 2020


Author: emaste
Date: Sun Mar  8 18:10:41 2020
New Revision: 358752
URL: https://svnweb.freebsd.org/changeset/base/358752

Log:
  MFC r357056: add MIPS-specific PT header ELF definitions
  
  Submitted by:	David Carlier

Modified:
  stable/12/sys/sys/elf_common.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/sys/elf_common.h
==============================================================================
--- stable/12/sys/sys/elf_common.h	Sun Mar  8 18:09:41 2020	(r358751)
+++ stable/12/sys/sys/elf_common.h	Sun Mar  8 18:10:41 2020	(r358752)
@@ -542,6 +542,10 @@ typedef struct {
 #define	PT_LOPROC	0x70000000	/* First processor-specific type. */
 #define	PT_ARM_ARCHEXT	0x70000000	/* ARM arch compat information. */
 #define	PT_ARM_EXIDX	0x70000001	/* ARM exception unwind tables. */
+#define	PT_MIPS_REGINFO		0x70000000	/* MIPS register usage info */
+#define	PT_MIPS_RTPROC		0x70000001	/* MIPS runtime procedure tbl */
+#define	PT_MIPS_OPTIONS		0x70000002	/* MIPS e_flags value*/
+#define	PT_MIPS_ABIFLAGS	0x70000003	/* MIPS fp mode */
 #define	PT_HIPROC	0x7fffffff	/* Last processor-specific type. */
 
 #define	PT_OPENBSD_RANDOMIZE	0x65A3DBE6	/* OpenBSD random data segment */


More information about the svn-src-all mailing list