2011-09-02 21:34:48 +04: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 00:38:13 +04:00
|
|
|
void hmp_info_version(Monitor *mon);
|
2011-09-12 22:10:53 +04:00
|
|
|
void hmp_info_kvm(Monitor *mon);
|
2011-09-13 00:54:20 +04:00
|
|
|
void hmp_info_status(Monitor *mon);
|
2011-09-14 00:16:25 +04:00
|
|
|
void hmp_info_uuid(Monitor *mon);
|
2011-09-14 23:05:49 +04:00
|
|
|
void hmp_info_chardev(Monitor *mon);
|
2011-09-21 22:29:55 +04:00
|
|
|
void hmp_info_mice(Monitor *mon);
|
2011-09-14 00:37:16 +04:00
|
|
|
void hmp_info_migrate(Monitor *mon);
|
2011-09-21 23:38:35 +04:00
|
|
|
void hmp_info_cpus(Monitor *mon);
|
2011-09-22 00:16:47 +04:00
|
|
|
void hmp_info_block(Monitor *mon);
|
2011-09-22 22:56:36 +04:00
|
|
|
void hmp_info_blockstats(Monitor *mon);
|
2011-10-17 22:41:22 +04:00
|
|
|
void hmp_info_vnc(Monitor *mon);
|
2011-10-20 23:01:33 +04:00
|
|
|
void hmp_info_spice(Monitor *mon);
|
2011-10-21 17:41:37 +04:00
|
|
|
void hmp_info_balloon(Monitor *mon);
|
2011-10-21 20:15:33 +04:00
|
|
|
void hmp_info_pci(Monitor *mon);
|
2011-09-15 21:20:28 +04:00
|
|
|
void hmp_quit(Monitor *mon, const QDict *qdict);
|
2011-09-15 21:34:39 +04:00
|
|
|
void hmp_stop(Monitor *mon, const QDict *qdict);
|
2011-09-15 21:41:46 +04:00
|
|
|
void hmp_system_reset(Monitor *mon, const QDict *qdict);
|
2011-09-28 18:06:15 +04:00
|
|
|
void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
|
2011-10-06 21:31:39 +04:00
|
|
|
void hmp_cpu(Monitor *mon, const QDict *qdict);
|
2011-09-02 21:34:48 +04:00
|
|
|
|
|
|
|
#endif
|