diff options
-rw-r--r-- | sys/sys/elf32.h | 5 | ||||
-rw-r--r-- | sys/sys/elf64.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sys/sys/elf32.h b/sys/sys/elf32.h index 3177bba..c507d85 100644 --- a/sys/sys/elf32.h +++ b/sys/sys/elf32.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf32.h,v 1.1 1997/05/21 23:07:30 jdp Exp $ + * $Id: elf32.h,v 1.2 1997/08/30 18:58:31 peter Exp $ */ #ifndef _SYS_ELF32_H_ @@ -196,6 +196,9 @@ typedef struct { #define PT_COUNT 7 /* Number of defined p_type values. */ +#define PT_LOPROC 0x70000000 /* First processor-specific type. */ +#define PT_HIPROC 0x7fffffff /* Last processor-specific type. */ + /* Values for p_flags. */ #define PF_X 0x1 /* Executable. */ #define PF_W 0x2 /* Writable. */ diff --git a/sys/sys/elf64.h b/sys/sys/elf64.h index 02a1ac2..b29c038 100644 --- a/sys/sys/elf64.h +++ b/sys/sys/elf64.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf64.h,v 1.1 1998/06/10 10:57:26 dfr Exp $ + * $Id: elf64.h,v 1.2 1998/06/14 13:24:09 dfr Exp $ */ #ifndef _SYS_ELF64_H_ @@ -198,6 +198,9 @@ typedef struct { #define PT_COUNT 7 /* Number of defined p_type values. */ +#define PT_LOPROC 0x70000000 /* First processor-specific type. */ +#define PT_HIPROC 0x7fffffff /* Last processor-specific type. */ + /* Values for p_flags. */ #define PF_X 0x1 /* Executable. */ #define PF_W 0x2 /* Writable. */ |