2012-06-07 08:22:56 +02:00
|
|
|
/*
|
|
|
|
* QEMU dump
|
|
|
|
*
|
|
|
|
* Copyright Fujitsu, Corp. 2011, 2012
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Wen Congyang <wency@cn.fujitsu.com>
|
|
|
|
*
|
2012-06-10 21:34:04 +02:00
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
2012-06-07 08:22:56 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2014-05-19 19:57:44 +02:00
|
|
|
#include "sysemu/dump-arch.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2012-06-07 08:22:56 +02:00
|
|
|
#include "qmp-commands.h"
|
|
|
|
|
2013-08-06 12:37:11 +02:00
|
|
|
int cpu_get_dump_info(ArchDumpInfo *info,
|
|
|
|
const struct GuestPhysBlockList *guest_phys_blocks)
|
2012-06-07 08:22:56 +02:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|