]> git.proxmox.com Git - mirror_qemu.git/blob - include/qemu/error-report.h
Merge branch 'realize-isa.v2' of git://github.com/afaerber/qemu-cpu
[mirror_qemu.git] / include / qemu / error-report.h
1 /*
2 * Error reporting
3 *
4 * Copyright (C) 2010 Red Hat Inc.
5 *
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
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
13 #ifndef QEMU_ERROR_H
14 #define QEMU_ERROR_H
15
16 #include <stdarg.h>
17 #include "qemu/compiler.h"
18
19 typedef struct Location {
20 /* all members are private to qemu-error.c */
21 enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind;
22 int num;
23 const void *ptr;
24 struct Location *prev;
25 } Location;
26
27 Location *loc_push_restore(Location *loc);
28 Location *loc_push_none(Location *loc);
29 Location *loc_pop(Location *loc);
30 Location *loc_save(Location *loc);
31 void loc_restore(Location *loc);
32 void loc_set_none(void);
33 void loc_set_cmdline(char **argv, int idx, int cnt);
34 void loc_set_file(const char *fname, int lno);
35
36 void error_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
37 void error_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
38 void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
39 void error_print_loc(void);
40 void error_set_progname(const char *argv0);
41 void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
42 const char *error_get_progname(void);
43
44 #endif