2011-07-08 16:54:02 +00:00
|
|
|
/* -*- c -*- */
|
|
|
|
struct remote_nonnull_domain {
|
|
|
|
remote_nonnull_string name;
|
|
|
|
remote_uuid uuid;
|
|
|
|
int id;
|
|
|
|
};
|
|
|
|
struct qemu_monitor_command_args {
|
|
|
|
remote_nonnull_domain dom;
|
|
|
|
remote_nonnull_string cmd;
|
2011-07-08 16:56:15 +00:00
|
|
|
u_int flags;
|
2011-07-08 16:54:02 +00:00
|
|
|
};
|
|
|
|
struct qemu_monitor_command_ret {
|
|
|
|
remote_nonnull_string result;
|
|
|
|
};
|
2011-05-05 16:31:58 +00:00
|
|
|
struct qemu_domain_attach_args {
|
|
|
|
u_int pid;
|
|
|
|
u_int flags;
|
|
|
|
};
|
|
|
|
struct qemu_domain_attach_ret {
|
|
|
|
remote_nonnull_domain dom;
|
|
|
|
};
|
2011-07-14 16:18:40 +00:00
|
|
|
enum qemu_procedure {
|
|
|
|
QEMU_PROC_MONITOR_COMMAND = 1,
|
|
|
|
QEMU_PROC_DOMAIN_ATTACH = 2,
|
|
|
|
};
|