Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Program header types 0x60000000 ~ 0x6fffffff are res...



details:   https://anonhg.NetBSD.org/src/rev/d0b25b708f70
branches:  trunk
changeset: 539842:d0b25b708f70
user:      junyoung <junyoung%NetBSD.org@localhost>
date:      Wed Nov 27 13:15:50 2002 +0000

description:
Program header types 0x60000000 ~ 0x6fffffff are reserved for
OS-specific semantics.

diffstat:

 sys/sys/exec_elf.h |  14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diffs (35 lines):

diff -r e71516e860ee -r d0b25b708f70 sys/sys/exec_elf.h
--- a/sys/sys/exec_elf.h        Wed Nov 27 12:06:10 2002 +0000
+++ b/sys/sys/exec_elf.h        Wed Nov 27 13:15:50 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_elf.h,v 1.64 2002/10/05 14:09:15 bjh21 Exp $      */
+/*     $NetBSD: exec_elf.h,v 1.65 2002/11/27 13:15:50 junyoung Exp $   */
 
 /*-
  * Copyright (c) 1994 The NetBSD Foundation, Inc.
@@ -321,6 +321,13 @@
 #define        PT_PHDR         6               /* Entry for header table itself */
 #define        PT_NUM          7
 
+#define        PT_LOOS         0x60000000      /* OS-specific range */
+#define        PT_HIOS         0x6fffffff
+#define        PT_LOPROC       0x70000000      /* Processor-specific range */
+#define        PT_HIPROC       0x7fffffff
+
+#define        PT_MIPS_REGINFO 0x70000000
+
 /* p_flags */
 #define        PF_R            0x4     /* Segment is readable */
 #define        PF_W            0x2     /* Segment is writable */
@@ -329,11 +336,6 @@
 #define        PF_MASKOS       0x0ff00000      /* Opersting system specific values */
 #define        PF_MASKPROC     0xf0000000      /* Processor-specific values */
 
-#define        PT_LOPROC       0x70000000      /* Processor-specific range */
-#define        PT_HIPROC       0x7fffffff
-
-#define        PT_MIPS_REGINFO 0x70000000
-
 /*
  * Section Headers
  */



Home | Main Index | Thread Index | Old Index