Xen Test Framework
decode.h
Go to the documentation of this file.
1 
6 #ifndef XTF_X86_DECODE_H
7 #define XTF_X86_DECODE_H
8 
9 #include <xtf/types.h>
10 
11 #include <arch/cpuid.h>
12 #include <arch/exinfo.h>
13 
20 const char *x86_vendor_name(enum x86_vendor v);
21 
28 const char *x86_exc_short_name(unsigned int ev);
29 
30 #endif /* XTF_X86_DECODE_H */
31 
32 /*
33  * Local variables:
34  * mode: C
35  * c-file-style: "BSD"
36  * c-basic-offset: 4
37  * tab-width: 4
38  * indent-tabs-mode: nil
39  * End:
40  */
Common declarations for all tests.
An encapsulation of an x86 exception with error code.
const char * x86_vendor_name(enum x86_vendor v)
String of the indentified vendor v.
Definition: decode.c:12
x86_vendor
Definition: cpuid.h:16
const char * x86_exc_short_name(unsigned int ev)
String abbreviation of ev.
Definition: decode.c:23