blob: fac70191eb4a5545ca9996b6e2456b261a393083 [file] [log] [blame]
Paolo Bonzini5f861462012-06-07 08:22:56 +02001/*
2 * QEMU dump
3 *
4 * Copyright Fujitsu, Corp. 2011, 2012
5 *
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
8 *
Stefan Weil352666e2012-06-10 19:34:04 +00009 * 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.
Paolo Bonzini5f861462012-06-07 08:22:56 +020011 *
12 */
13
14#include "qemu-common.h"
Bharata B Raoacb0ef52014-05-19 19:57:44 +020015#include "sysemu/dump-arch.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010016#include "qapi/qmp/qerror.h"
Paolo Bonzini5f861462012-06-07 08:22:56 +020017#include "qmp-commands.h"
Paolo Bonzini5f861462012-06-07 08:22:56 +020018
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +020019int cpu_get_dump_info(ArchDumpInfo *info,
20 const struct GuestPhysBlockList *guest_phys_blocks)
Paolo Bonzini5f861462012-06-07 08:22:56 +020021{
22 return -1;
23}
24
25ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
26{
27 return -1;
28}
29