Xen Test Framework
traps.h
Go to the documentation of this file.
1#ifndef XTF_TRAPS_H
2#define XTF_TRAPS_H
3
4#include <xtf/extable.h>
5#include <xtf/test.h>
6
7#include <arch/traps.h>
8
10
14bool do_unhandled_exception(struct cpu_regs *regs);
15
16#endif /* XTF_TRAPS_H */
17
18/*
19 * Local variables:
20 * mode: C
21 * c-file-style: "BSD"
22 * c-basic-offset: 4
23 * tab-width: 4
24 * indent-tabs-mode: nil
25 * End:
26 */
Exception table support.
API for tests.
shared_info_t shared_info
Definition: setup.c:32
bool do_unhandled_exception(struct cpu_regs *regs)
May be implemented by a guest to provide custom exception handling.
Definition: traps.c:63