qemu/include/qemu/error-report.h
<<
>>
Prefs
   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
  17typedef struct Location {
  18    /* all members are private to qemu-error.c */
  19    enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind;
  20    int num;
  21    const void *ptr;
  22    struct Location *prev;
  23} Location;
  24
  25Location *loc_push_restore(Location *loc);
  26Location *loc_push_none(Location *loc);
  27Location *loc_pop(Location *loc);
  28Location *loc_save(Location *loc);
  29void loc_restore(Location *loc);
  30void loc_set_none(void);
  31void loc_set_cmdline(char **argv, int idx, int cnt);
  32void loc_set_file(const char *fname, int lno);
  33
  34void error_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
  35void error_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
  36void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
  37void error_set_progname(const char *argv0);
  38void error_vreport(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
  39void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
  40const char *error_get_progname(void);
  41extern bool enable_timestamp_msg;
  42
  43#endif
  44