blob: 1f28ec2be3f2d469f78925d2652fc6b7bbcc1cde [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
Peter Maydell87c9b5e2016-01-29 17:49:52 +000014#include "qemu/osdep.h"
Bharata B Raoacb0ef52014-05-19 19:57:44 +020015#include "sysemu/dump-arch.h"
Paolo Bonzini5f861462012-06-07 08:22:56 +020016
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +020017int cpu_get_dump_info(ArchDumpInfo *info,
18 const struct GuestPhysBlockList *guest_phys_blocks)
Paolo Bonzini5f861462012-06-07 08:22:56 +020019{
20 return -1;
21}
22
23ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
24{
25 return -1;
26}
27