2011-09-03 01:34:48 +08:00
|
|
|
/*
|
|
|
|
* Human Monitor Interface
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HMP_H
|
|
|
|
#define HMP_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qapi-types.h"
|
|
|
|
|
|
|
|
void hmp_info_name(Monitor *mon);
|
2011-08-27 04:38:13 +08:00
|
|
|
void hmp_info_version(Monitor *mon);
|
2011-09-13 02:10:53 +08:00
|
|
|
void hmp_info_kvm(Monitor *mon);
|
2011-09-13 04:54:20 +08:00
|
|
|
void hmp_info_status(Monitor *mon);
|
2011-09-14 04:16:25 +08:00
|
|
|
void hmp_info_uuid(Monitor *mon);
|
2011-09-15 03:05:49 +08:00
|
|
|
void hmp_info_chardev(Monitor *mon);
|
2011-09-22 02:29:55 +08:00
|
|
|
void hmp_info_mice(Monitor *mon);
|
2011-09-14 04:37:16 +08:00
|
|
|
void hmp_info_migrate(Monitor *mon);
|
2011-09-22 03:38:35 +08:00
|
|
|
void hmp_info_cpus(Monitor *mon);
|
2011-09-22 04:16:47 +08:00
|
|
|
void hmp_info_block(Monitor *mon);
|
2011-09-23 02:56:36 +08:00
|
|
|
void hmp_info_blockstats(Monitor *mon);
|
2011-10-18 02:41:22 +08:00
|
|
|
void hmp_info_vnc(Monitor *mon);
|
2011-10-21 03:01:33 +08:00
|
|
|
void hmp_info_spice(Monitor *mon);
|
2011-10-21 21:41:37 +08:00
|
|
|
void hmp_info_balloon(Monitor *mon);
|
2011-10-22 00:15:33 +08:00
|
|
|
void hmp_info_pci(Monitor *mon);
|
2011-09-16 01:20:28 +08:00
|
|
|
void hmp_quit(Monitor *mon, const QDict *qdict);
|
2011-09-16 01:34:39 +08:00
|
|
|
void hmp_stop(Monitor *mon, const QDict *qdict);
|
2011-09-16 01:41:46 +08:00
|
|
|
void hmp_system_reset(Monitor *mon, const QDict *qdict);
|
2011-09-28 22:06:15 +08:00
|
|
|
void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
|
2011-10-07 01:31:39 +08:00
|
|
|
void hmp_cpu(Monitor *mon, const QDict *qdict);
|
2011-11-23 02:32:37 +08:00
|
|
|
void hmp_memsave(Monitor *mon, const QDict *qdict);
|
2011-11-23 03:26:46 +08:00
|
|
|
void hmp_pmemsave(Monitor *mon, const QDict *qdict);
|
2011-11-23 03:58:31 +08:00
|
|
|
void hmp_cont(Monitor *mon, const QDict *qdict);
|
2011-11-23 22:55:53 +08:00
|
|
|
void hmp_inject_nmi(Monitor *mon, const QDict *qdict);
|
2011-11-23 23:11:55 +08:00
|
|
|
void hmp_set_link(Monitor *mon, const QDict *qdict);
|
2011-11-23 23:28:21 +08:00
|
|
|
void hmp_block_passwd(Monitor *mon, const QDict *qdict);
|
2011-11-26 00:38:09 +08:00
|
|
|
void hmp_balloon(Monitor *mon, const QDict *qdict);
|
2011-11-26 00:57:10 +08:00
|
|
|
void hmp_block_resize(Monitor *mon, const QDict *qdict);
|
2011-09-03 01:34:48 +08:00
|
|
|
|
|
|
|
#endif
|