block: iostatus: Drop BDRV_IOS_INVAL
[qemu/ar7.git] / hmp.h
blobd9a83eb160adfa0c3971962087ee41e05911a75f
1 /*
2 * Human Monitor Interface
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef HMP_H
15 #define HMP_H
17 #include "qemu-common.h"
18 #include "qapi-types.h"
20 void hmp_info_name(Monitor *mon);
21 void hmp_info_version(Monitor *mon);
22 void hmp_info_kvm(Monitor *mon);
23 void hmp_info_status(Monitor *mon);
24 void hmp_info_uuid(Monitor *mon);
25 void hmp_info_chardev(Monitor *mon);
26 void hmp_info_mice(Monitor *mon);
27 void hmp_info_migrate(Monitor *mon);
28 void hmp_info_cpus(Monitor *mon);
29 void hmp_quit(Monitor *mon, const QDict *qdict);
30 void hmp_stop(Monitor *mon, const QDict *qdict);
31 void hmp_system_reset(Monitor *mon, const QDict *qdict);
32 void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
33 void hmp_cpu(Monitor *mon, const QDict *qdict);
35 #endif