aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/x86_emulate.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-04-28 14:04:13 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-04-28 14:04:13 +0000
commit162dad1cfbdb556a6d9d35d98e2c79d899adea9c (patch)
tree34f8af3c00d6ae89a1aeca46f10cee2735f4f9fe /xen/include/asm-x86/x86_emulate.h
parentb9cd4450f8a869d848db2a4d73608100eea02492 (diff)
downloadxen-162dad1cfbdb556a6d9d35d98e2c79d899adea9c.tar.gz
xen-162dad1cfbdb556a6d9d35d98e2c79d899adea9c.tar.bz2
xen-162dad1cfbdb556a6d9d35d98e2c79d899adea9c.zip
bitkeeper revision 1.1389.1.2 (4270ed5dZvr_HdIQR0eBM2m4Kj81_A)
Renames: execution_context/xen_regs -> cpu_user_regs full_execution_context -> vcpu_guest_context [defined both 'struct xxx' and 'xxx_t' forms] Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/asm-x86/x86_emulate.h')
-rw-r--r--xen/include/asm-x86/x86_emulate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xen/include/asm-x86/x86_emulate.h b/xen/include/asm-x86/x86_emulate.h
index 79197fed9c..bfcc987f57 100644
--- a/xen/include/asm-x86/x86_emulate.h
+++ b/xen/include/asm-x86/x86_emulate.h
@@ -139,7 +139,7 @@ x86_emulate_write_std(
unsigned long val,
unsigned int bytes);
-struct xen_regs;
+struct cpu_user_regs;
/*
* x86_emulate_memop: Emulate an instruction that faulted attempting to
@@ -152,7 +152,7 @@ struct xen_regs;
*/
extern int
x86_emulate_memop(
- struct xen_regs *regs,
+ struct cpu_user_regs *regs,
unsigned long cr2,
struct x86_mem_emulator *ops,
int mode);
@@ -164,6 +164,6 @@ x86_emulate_memop(
*/
extern void *
decode_register(
- u8 modrm_reg, struct xen_regs *regs, int highbyte_regs);
+ u8 modrm_reg, struct cpu_user_regs *regs, int highbyte_regs);
#endif /* __X86_EMULATE_H__ */