2011-07-08 11:54:02 -05: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 11:56:15 -05:00
|
|
|
u_int flags;
|
2011-07-08 11:54:02 -05:00
|
|
|
};
|
|
|
|
struct qemu_monitor_command_ret {
|
|
|
|
remote_nonnull_string result;
|
|
|
|
};
|
2011-05-05 11:31:58 -05:00
|
|
|
struct qemu_domain_attach_args {
|
|
|
|
u_int pid;
|
|
|
|
u_int flags;
|
|
|
|
};
|
|
|
|
struct qemu_domain_attach_ret {
|
|
|
|
remote_nonnull_domain dom;
|
|
|
|
};
|
2011-07-14 11:18:40 -05:00
|
|
|
enum qemu_procedure {
|
|
|
|
QEMU_PROC_MONITOR_COMMAND = 1,
|
|
|
|
QEMU_PROC_DOMAIN_ATTACH = 2,
|
|
|
|
};
|