2010-02-18 17:14:17 +01:00
|
|
|
/*
|
|
|
|
* Error reporting
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Markus Armbruster <armbru@redhat.com>,
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2016-06-29 10:12:57 +02:00
|
|
|
#ifndef QEMU_ERROR_REPORT_H
|
|
|
|
#define QEMU_ERROR_REPORT_H
|
2012-12-06 11:22:34 +01:00
|
|
|
|
2010-02-18 19:46:49 +01:00
|
|
|
typedef struct Location {
|
|
|
|
/* all members are private to qemu-error.c */
|
2010-02-18 20:13:51 +01:00
|
|
|
enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind;
|
2010-02-18 19:46:49 +01:00
|
|
|
int num;
|
|
|
|
const void *ptr;
|
|
|
|
struct Location *prev;
|
|
|
|
} Location;
|
|
|
|
|
|
|
|
Location *loc_push_restore(Location *loc);
|
|
|
|
Location *loc_push_none(Location *loc);
|
|
|
|
Location *loc_pop(Location *loc);
|
|
|
|
Location *loc_save(Location *loc);
|
|
|
|
void loc_restore(Location *loc);
|
|
|
|
void loc_set_none(void);
|
2010-02-18 20:13:51 +01:00
|
|
|
void loc_set_cmdline(char **argv, int idx, int cnt);
|
2010-02-18 19:48:33 +01:00
|
|
|
void loc_set_file(const char *fname, int lno);
|
2010-02-18 19:46:49 +01:00
|
|
|
|
2010-09-23 21:28:05 +02:00
|
|
|
void error_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
|
2010-09-23 21:28:03 +02:00
|
|
|
void error_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
|
2016-10-24 18:31:02 +02:00
|
|
|
void error_vprintf_unless_qmp(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
|
2010-09-23 21:28:03 +02:00
|
|
|
void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
|
2010-02-24 14:37:14 +01:00
|
|
|
void error_set_progname(const char *argv0);
|
2014-10-08 14:11:54 +02:00
|
|
|
void error_vreport(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
|
2010-09-23 21:28:03 +02:00
|
|
|
void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
|
2011-12-13 02:22:57 +01:00
|
|
|
const char *error_get_progname(void);
|
2013-07-04 05:02:46 +02:00
|
|
|
extern bool enable_timestamp_msg;
|
2010-02-18 16:24:31 +01:00
|
|
|
|
|
|
|
#endif
|