diff options
author | aiju <devnull@localhost> | 2017-06-21 22:18:26 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2017-06-21 22:18:26 +0000 |
commit | 5c0bff4ba204cfad7aedb8c1c20f1c29265dcb01 (patch) | |
tree | 055fa5e6319b94d0f2992480a0e6ed0271179fb6 /sys/src/cmd/vmx/dat.h | |
parent | 37b9ab5a043e45a68979632c177e11af7a439027 (diff) |
vmx(1): add support for (so far) crude 9p debugging fs; add gdb stub; clean up linux gdt code
Diffstat (limited to 'sys/src/cmd/vmx/dat.h')
-rw-r--r-- | sys/src/cmd/vmx/dat.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/src/cmd/vmx/dat.h b/sys/src/cmd/vmx/dat.h index 156fdaa58..f34fd3164 100644 --- a/sys/src/cmd/vmx/dat.h +++ b/sys/src/cmd/vmx/dat.h @@ -3,7 +3,14 @@ typedef struct PCICap PCICap; typedef struct PCIBar PCIBar; typedef struct Region Region; -extern int halt, irqactive; +extern int irqactive; + +enum { + VMRUNNING, + VMHALT, + VMDEAD, +}; +extern int state; enum { BY2PG = 4096 |