Statistics
| Branch: | Revision:

root / hw / qdev-monitor.h @ bf3bc4c4

History | View | Annotate | Download (434 Bytes)

1 074a86fc Anthony Liguori
#ifndef QEMU_QDEV_MONITOR_H
2 074a86fc Anthony Liguori
#define QEMU_QDEV_MONITOR_H
3 074a86fc Anthony Liguori
4 074a86fc Anthony Liguori
#include "qdev-core.h"
5 074a86fc Anthony Liguori
#include "monitor.h"
6 074a86fc Anthony Liguori
7 074a86fc Anthony Liguori
/*** monitor commands ***/
8 074a86fc Anthony Liguori
9 074a86fc Anthony Liguori
void do_info_qtree(Monitor *mon);
10 074a86fc Anthony Liguori
void do_info_qdm(Monitor *mon);
11 074a86fc Anthony Liguori
int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data);
12 074a86fc Anthony Liguori
int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
13 074a86fc Anthony Liguori
int qdev_device_help(QemuOpts *opts);
14 074a86fc Anthony Liguori
DeviceState *qdev_device_add(QemuOpts *opts);
15 074a86fc Anthony Liguori
16 074a86fc Anthony Liguori
#endif