blob: 204dfb6a97e3c9818be2fcff968357586c8d600d [file] [log] [blame]
Markus Armbrusterba0fe872010-02-18 17:14:17 +01001/*
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
Markus Armbruster2f792012010-02-18 16:24:31 +010013#ifndef QEMU_ERROR_H
14#define QEMU_ERROR_H
15
Markus Armbruster827b0812010-02-18 19:46:49 +010016typedef struct Location {
17 /* all members are private to qemu-error.c */
18 enum { LOC_NONE } kind;
19 int num;
20 const void *ptr;
21 struct Location *prev;
22} Location;
23
24Location *loc_push_restore(Location *loc);
25Location *loc_push_none(Location *loc);
26Location *loc_pop(Location *loc);
27Location *loc_save(Location *loc);
28void loc_restore(Location *loc);
29void loc_set_none(void);
30
Markus Armbrusterba0fe872010-02-18 17:14:17 +010031void error_vprintf(const char *fmt, va_list ap);
32void error_printf(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
Markus Armbruster827b0812010-02-18 19:46:49 +010033void error_print_loc(void);
Markus Armbruster65abca02010-02-24 14:37:14 +010034void error_set_progname(const char *argv0);
Markus Armbruster1ecda022010-02-18 17:25:24 +010035void error_report(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
Markus Armbrusterab5b0272010-03-02 18:15:09 +010036void qerror_report_internal(const char *file, int linenr, const char *func,
37 const char *fmt, ...)
38 __attribute__ ((format(printf, 4, 5)));
Markus Armbruster2f792012010-02-18 16:24:31 +010039
Markus Armbrusterab5b0272010-03-02 18:15:09 +010040#define qerror_report(fmt, ...) \
41 qerror_report_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__)
Markus Armbruster2f792012010-02-18 16:24:31 +010042
43#endif