]>
Commit | Line | Data |
---|---|---|
48a32bed AL |
1 | /* |
2 | * Human Monitor Interface | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <aliguori@us.ibm.com> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
10 | * the COPYING file in the top-level directory. | |
11 | * | |
12 | */ | |
13 | ||
14 | #ifndef HMP_H | |
15 | #define HMP_H | |
16 | ||
17 | #include "qemu-common.h" | |
18 | #include "qapi-types.h" | |
19 | ||
20 | void hmp_info_name(Monitor *mon); | |
b9c15f16 | 21 | void hmp_info_version(Monitor *mon); |
292a2602 | 22 | void hmp_info_kvm(Monitor *mon); |
1fa9a5e4 | 23 | void hmp_info_status(Monitor *mon); |
efab767e | 24 | void hmp_info_uuid(Monitor *mon); |
c5a415a0 | 25 | void hmp_info_chardev(Monitor *mon); |
e235cec3 | 26 | void hmp_info_mice(Monitor *mon); |
791e7c82 | 27 | void hmp_info_migrate(Monitor *mon); |
de0b36b6 | 28 | void hmp_info_cpus(Monitor *mon); |
b2023818 | 29 | void hmp_info_block(Monitor *mon); |
f11f57e4 | 30 | void hmp_info_blockstats(Monitor *mon); |
2b54aa87 | 31 | void hmp_info_vnc(Monitor *mon); |
d1f29646 | 32 | void hmp_info_spice(Monitor *mon); |
96637bcd | 33 | void hmp_info_balloon(Monitor *mon); |
79627472 | 34 | void hmp_info_pci(Monitor *mon); |
7a7f325e | 35 | void hmp_quit(Monitor *mon, const QDict *qdict); |
5f158f21 | 36 | void hmp_stop(Monitor *mon, const QDict *qdict); |
38d22653 | 37 | void hmp_system_reset(Monitor *mon, const QDict *qdict); |
5bc465e4 | 38 | void hmp_system_powerdown(Monitor *mon, const QDict *qdict); |
755f1968 | 39 | void hmp_cpu(Monitor *mon, const QDict *qdict); |
0cfd6a9a | 40 | void hmp_memsave(Monitor *mon, const QDict *qdict); |
6d3962bf | 41 | void hmp_pmemsave(Monitor *mon, const QDict *qdict); |
e42e818b | 42 | void hmp_cont(Monitor *mon, const QDict *qdict); |
ab49ab5c | 43 | void hmp_inject_nmi(Monitor *mon, const QDict *qdict); |
4b37156c | 44 | void hmp_set_link(Monitor *mon, const QDict *qdict); |
a4dea8a9 | 45 | void hmp_block_passwd(Monitor *mon, const QDict *qdict); |
d72f3264 | 46 | void hmp_balloon(Monitor *mon, const QDict *qdict); |
5e7caacb | 47 | void hmp_block_resize(Monitor *mon, const QDict *qdict); |
6106e249 | 48 | void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict); |
6cdedb07 | 49 | void hmp_migrate_cancel(Monitor *mon, const QDict *qdict); |
4f0a993b | 50 | void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict); |
3dc85383 | 51 | void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict); |
fbf796fd | 52 | void hmp_set_password(Monitor *mon, const QDict *qdict); |
9ad5372d | 53 | void hmp_expire_password(Monitor *mon, const QDict *qdict); |
c245b6a3 | 54 | void hmp_eject(Monitor *mon, const QDict *qdict); |
48a32bed AL |
55 | |
56 | #endif |