]>
Commit | Line | Data |
---|---|---|
ba0fe87a MA |
1 | /* |
2 | * Error reporting | |
3 | * | |
4 | * Copyright (C) 2010 Red Hat Inc. | |
5 | * | |
6 | * Authors: | |
7 | * Markus Armbruster <[email protected]>, | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | */ | |
12 | ||
2f792016 MA |
13 | #ifndef QEMU_ERROR_H |
14 | #define QEMU_ERROR_H | |
15 | ||
79ee7df8 PB |
16 | #include <stdarg.h> |
17 | ||
827b0813 MA |
18 | typedef struct Location { |
19 | /* all members are private to qemu-error.c */ | |
0f0bc3f1 | 20 | enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind; |
827b0813 MA |
21 | int num; |
22 | const void *ptr; | |
23 | struct Location *prev; | |
24 | } Location; | |
25 | ||
26 | Location *loc_push_restore(Location *loc); | |
27 | Location *loc_push_none(Location *loc); | |
28 | Location *loc_pop(Location *loc); | |
29 | Location *loc_save(Location *loc); | |
30 | void loc_restore(Location *loc); | |
31 | void loc_set_none(void); | |
0f0bc3f1 | 32 | void loc_set_cmdline(char **argv, int idx, int cnt); |
cf5a65aa | 33 | void loc_set_file(const char *fname, int lno); |
827b0813 | 34 | |
8b7968f7 | 35 | void error_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0); |
e5924d89 SW |
36 | void error_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2); |
37 | void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2); | |
827b0813 | 38 | void error_print_loc(void); |
65abca0a | 39 | void error_set_progname(const char *argv0); |
e5924d89 | 40 | void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2); |
7636a470 | 41 | const char *error_get_progname(void); |
2f792016 MA |
42 | |
43 | #endif |