blob: 4d5c53700ed2981008220149ad2ef5d3e32b486b [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 */
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +010018 enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind;
Markus Armbruster827b0812010-02-18 19:46:49 +010019 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);
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +010030void loc_set_cmdline(char **argv, int idx, int cnt);
Markus Armbrustercf5a65a2010-02-18 19:48:33 +010031void loc_set_file(const char *fname, int lno);
Markus Armbruster827b0812010-02-18 19:46:49 +010032
Stefan Weil8b7968f2010-09-23 21:28:05 +020033void error_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
Stefan Weile5924d82010-09-23 21:28:03 +020034void error_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
35void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
Markus Armbruster827b0812010-02-18 19:46:49 +010036void error_print_loc(void);
Markus Armbruster65abca02010-02-24 14:37:14 +010037void error_set_progname(const char *argv0);
Stefan Weile5924d82010-09-23 21:28:03 +020038void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
Markus Armbruster2f792012010-02-18 16:24:31 +010039
40#endif