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