4 #include "block/block.h"
5 #include "qapi/qapi-types-misc.h"
6 #include "qemu/readline.h"
8 extern __thread Monitor
*cur_mon
;
9 typedef struct MonitorHMP MonitorHMP
;
10 typedef struct MonitorOptions MonitorOptions
;
12 #define QMP_REQ_QUEUE_LEN_MAX 8
14 extern QemuOptsList qemu_mon_opts
;
16 bool monitor_cur_is_qmp(void);
18 void monitor_init_globals(void);
19 void monitor_init_globals_core(void);
20 void monitor_init_qmp(Chardev
*chr
, bool pretty
, Error
**errp
);
21 void monitor_init_hmp(Chardev
*chr
, bool use_readline
, Error
**errp
);
22 int monitor_init(MonitorOptions
*opts
, bool allow_hmp
, Error
**errp
);
23 int monitor_init_opts(QemuOpts
*opts
, Error
**errp
);
24 void monitor_cleanup(void);
26 int monitor_suspend(Monitor
*mon
);
27 void monitor_resume(Monitor
*mon
);
29 int monitor_get_fd(Monitor
*mon
, const char *fdname
, Error
**errp
);
30 int monitor_fd_param(Monitor
*mon
, const char *fdname
, Error
**errp
);
32 int monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
34 int monitor_printf(Monitor
*mon
, const char *fmt
, ...) GCC_FMT_ATTR(2, 3);
35 void monitor_flush(Monitor
*mon
);
36 int monitor_set_cpu(int cpu_index
);
37 int monitor_get_cpu_index(void);
39 void monitor_read_command(MonitorHMP
*mon
, int show_prompt
);
40 int monitor_read_password(MonitorHMP
*mon
, ReadLineFunc
*readline_func
,
43 AddfdInfo
*monitor_fdset_add_fd(int fd
, bool has_fdset_id
, int64_t fdset_id
,
44 bool has_opaque
, const char *opaque
,
46 int monitor_fdset_get_fd(int64_t fdset_id
, int flags
);
47 int monitor_fdset_dup_fd_add(int64_t fdset_id
, int dup_fd
);
48 void monitor_fdset_dup_fd_remove(int dup_fd
);
49 int64_t monitor_fdset_dup_fd_find(int dup_fd
);
51 #endif /* MONITOR_H */