i386: hvf: cleanup x86_gen.h
[qemu/kevin.git] / target / i386 / hvf / panic.h
blob411ef43a5bf03490bdc7e411eb15db5682e68142
1 /*
2 * Copyright (C) 2016 Veertu Inc,
3 * Copyright (C) 2017 Google Inc,
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #ifndef HVF_PANIC_H
19 #define HVF_PANIC_H
21 #define VM_PANIC(x) {\
22 printf("%s\n", x); \
23 abort(); \
26 #define VM_PANIC_ON(x) {\
27 if (x) { \
28 printf("%s\n", #x); \
29 abort(); \
30 } \
33 #define VM_PANIC_EX(...) {\
34 printf(__VA_ARGS__); \
35 abort(); \
38 #define VM_PANIC_ON_EX(x, ...) {\
39 if (x) { \
40 printf(__VA_ARGS__); \
41 abort(); \
42 } \
45 #endif