diff options
Diffstat (limited to 'sys/arch/amd64/include/vmmvar.h')
-rw-r--r-- | sys/arch/amd64/include/vmmvar.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/vmmvar.h b/sys/arch/amd64/include/vmmvar.h index ffc95da55ba..9e3ad9488ad 100644 --- a/sys/arch/amd64/include/vmmvar.h +++ b/sys/arch/amd64/include/vmmvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmmvar.h,v 1.53 2018/04/27 10:26:15 mlarkin Exp $ */ +/* $OpenBSD: vmmvar.h,v 1.54 2018/07/05 05:07:03 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -321,6 +321,15 @@ enum { VEI_DIR_IN }; +enum { + VMM_CPU_MODE_REAL, + VMM_CPU_MODE_PROT, + VMM_CPU_MODE_PROT32, + VMM_CPU_MODE_COMPAT, + VMM_CPU_MODE_LONG, + VMM_CPU_MODE_UNKNOWN, +}; + /* * Port definitions not found elsewhere */ |