]>
Commit | Line | Data |
---|---|---|
48a32bed AL |
1 | /* |
2 | * Human Monitor Interface | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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); |
7a7f325e | 26 | void hmp_quit(Monitor *mon, const QDict *qdict); |
5f158f21 | 27 | void hmp_stop(Monitor *mon, const QDict *qdict); |
38d22653 | 28 | void hmp_system_reset(Monitor *mon, const QDict *qdict); |
48a32bed AL |
29 | |
30 | #endif |