Xen Test Framework
test.h
Go to the documentation of this file.
1 
6 #ifndef XTF_X86_TEST_H
7 #define XTF_X86_TEST_H
8 
9 #include <arch/regs.h>
10 
14 void do_syscall(struct cpu_regs *regs);
15 
19 void do_sysenter(struct cpu_regs *regs);
20 
24 void do_evtchn(struct cpu_regs *regs);
25 
26 #endif /* XTF_X86_TEST_H */
27 
28 /*
29  * Local variables:
30  * mode: C
31  * c-file-style: "BSD"
32  * c-basic-offset: 4
33  * tab-width: 4
34  * indent-tabs-mode: nil
35  * End:
36  */
void do_evtchn(struct cpu_regs *regs)
May be implemented by a guest to handle Event Channel upcalls.
Definition: traps.c:78
void do_sysenter(struct cpu_regs *regs)
May be implemented by a guest to handle SYSENTER invocations.
Definition: traps.c:73
void do_syscall(struct cpu_regs *regs)
May be implemented by a guest to handle SYSCALL invocations.
Definition: traps.c:68