diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-06-28 09:29:58 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-06-28 09:29:58 +0000 |
commit | 9b3e9e483c5e82737337a53a3506bd1b75f531eb (patch) | |
tree | 16a91f8d8b4e0c55ea30bebe8b69dc52347249ee | |
parent | bae8d886d30c95b9cae6612c60e905835a744056 (diff) |
Add MID_POWERPC64. These identifiers are only used for kernel core dumps
these days, so inventing our own numbers is fine.
From drahn@
-rw-r--r-- | sys/sys/exec.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/exec.h b/sys/sys/exec.h index 7a0320bd275..5158eb25e5c 100644 --- a/sys/sys/exec.h +++ b/sys/sys/exec.h @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.h,v 1.41 2020/05/10 00:56:06 guenther Exp $ */ +/* $OpenBSD: exec.h,v 1.42 2020/06/28 09:29:57 kettenis Exp $ */ /* $NetBSD: exec.h,v 1.59 1996/02/09 18:25:09 christos Exp $ */ /*- @@ -288,6 +288,7 @@ struct exec { #define MID_AMD64 157 /* AMD64 */ #define MID_MIPS64 158 /* big-endian MIPS64 */ #define MID_ARM64 159 /* ARM64 */ +#define MID_POWERPC64 160 /* big-endian 64-bit PowerPC */ #define MID_HP200 200 /* hp200 (68010) BSD binary */ #define MID_HP300 300 /* hp300 (68020+68881) BSD binary */ #define MID_HPUX 0x20C /* hp200/300 HP-UX binary */ |