]> git.proxmox.com Git - qemu.git/blame - stubs/dump.c
Open 2.0 development tree
[qemu.git] / stubs / dump.c
CommitLineData
5f86146f
PB
1/*
2 * QEMU dump
3 *
4 * Copyright Fujitsu, Corp. 2011, 2012
5 *
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
8 *
352666e2
SW
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.
5f86146f
PB
11 *
12 */
13
14#include "qemu-common.h"
9c17d615 15#include "sysemu/dump.h"
7b1b5d19 16#include "qapi/qmp/qerror.h"
5f86146f 17#include "qmp-commands.h"
5f86146f 18
56c4bfb3
LE
19int cpu_get_dump_info(ArchDumpInfo *info,
20 const struct GuestPhysBlockList *guest_phys_blocks)
5f86146f
PB
21{
22 return -1;
23}
24
25ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
26{
27 return -1;
28}
29