2011-09-02 12:34:48 -05: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-26 17:38:13 -03:00
|
|
|
void hmp_info_version(Monitor *mon);
|
2011-09-12 15:10:53 -03:00
|
|
|
void hmp_info_kvm(Monitor *mon);
|
2011-09-12 17:54:20 -03:00
|
|
|
void hmp_info_status(Monitor *mon);
|
2011-09-13 17:16:25 -03:00
|
|
|
void hmp_info_uuid(Monitor *mon);
|
2011-09-14 16:05:49 -03:00
|
|
|
void hmp_info_chardev(Monitor *mon);
|
2011-09-15 14:20:28 -03:00
|
|
|
void hmp_quit(Monitor *mon, const QDict *qdict);
|
2011-09-15 14:34:39 -03:00
|
|
|
void hmp_stop(Monitor *mon, const QDict *qdict);
|
2011-09-15 14:41:46 -03:00
|
|
|
void hmp_system_reset(Monitor *mon, const QDict *qdict);
|
2011-09-28 11:06:15 -03:00
|
|
|
void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
|
2011-09-02 12:34:48 -05:00
|
|
|
|
|
|
|
#endif
|