Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jan 2020 17:38:18 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357056 - head/sys/sys
Message-ID:  <202001231738.00NHcIEr016098@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Jan 23 17:38:17 2020
New Revision: 357056
URL: https://svnweb.freebsd.org/changeset/base/357056

Log:
  add MIPS-specific PT header ELF definitions
  
  Submitted by:	David Carlier
  MFC after:	1 week
  Differential Revision:	https://reviews.freebsd.org/D19428

Modified:
  head/sys/sys/elf_common.h

Modified: head/sys/sys/elf_common.h
==============================================================================
--- head/sys/sys/elf_common.h	Thu Jan 23 17:18:58 2020	(r357055)
+++ head/sys/sys/elf_common.h	Thu Jan 23 17:38:17 2020	(r357056)
@@ -543,6 +543,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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001231738.00NHcIEr016098>