Statistics
| Branch: | Revision:

root / qemu-user.c @ 1dc324d2

History | View | Annotate | Download (993 Bytes)

1 ce008c1f Andreas Färber
/*
2 ce008c1f Andreas Färber
 * Stubs for QEMU user emulation
3 ce008c1f Andreas Färber
 *
4 ce008c1f Andreas Färber
 * Copyright (c) 2012 SUSE LINUX Products GmbH
5 ce008c1f Andreas Färber
 *
6 ce008c1f Andreas Färber
 * This program is free software; you can redistribute it and/or
7 ce008c1f Andreas Färber
 * modify it under the terms of the GNU General Public License
8 ce008c1f Andreas Färber
 * as published by the Free Software Foundation; either version 2
9 ce008c1f Andreas Färber
 * of the License, or (at your option) any later version.
10 ce008c1f Andreas Färber
 *
11 ce008c1f Andreas Färber
 * This program is distributed in the hope that it will be useful,
12 ce008c1f Andreas Färber
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ce008c1f Andreas Färber
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ce008c1f Andreas Färber
 * GNU General Public License for more details.
15 ce008c1f Andreas Färber
 *
16 ce008c1f Andreas Färber
 * You should have received a copy of the GNU General Public License
17 ce008c1f Andreas Färber
 * along with this program; if not, see
18 ce008c1f Andreas Färber
 * <http://www.gnu.org/licenses/gpl-2.0.html>
19 ce008c1f Andreas Färber
 */
20 ce008c1f Andreas Färber
21 ce008c1f Andreas Färber
#include "qemu-common.h"
22 ce008c1f Andreas Färber
#include "monitor.h"
23 ce008c1f Andreas Färber
24 ce008c1f Andreas Färber
Monitor *cur_mon;
25 ce008c1f Andreas Färber
26 ce008c1f Andreas Färber
int monitor_cur_is_qmp(void)
27 ce008c1f Andreas Färber
{
28 ce008c1f Andreas Färber
    return 0;
29 ce008c1f Andreas Färber
}
30 ce008c1f Andreas Färber
31 ce008c1f Andreas Färber
void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
32 ce008c1f Andreas Färber
{
33 ce008c1f Andreas Färber
}
34 ce008c1f Andreas Färber
35 ce008c1f Andreas Färber
void monitor_set_error(Monitor *mon, QError *qerror)
36 ce008c1f Andreas Färber
{
37 ce008c1f Andreas Färber
}